2 #include <barvinok/polylib.h>
3 #include <barvinok/barvinok.h>
4 #include <barvinok/options.h>
5 #include <barvinok/util.h>
6 #include "reduce_domain.h"
7 #include "param_util.h"
11 #define ALLOC(type) (type*)malloc(sizeof(type))
12 #define ALLOCN(type,n) (type*)malloc((n) * sizeof(type))
14 /* Computes an evalue representation of a coordinate
17 static evalue
*vertex2evalue(Value
*vertex
, int nparam
)
19 return affine2evalue(vertex
, vertex
[nparam
+1], nparam
);
22 static void matrix_print(evalue
***matrix
, int dim
, int *cols
,
23 const char **param_names
)
27 for (i
= 0; i
< dim
; ++i
)
28 for (j
= 0; j
< dim
; ++j
) {
29 int k
= cols
? cols
[j
] : j
;
30 fprintf(stderr
, "%d %d: ", i
, j
);
31 print_evalue(stderr
, matrix
[i
][k
], param_names
);
32 fprintf(stderr
, "\n");
36 /* Compute determinant using Laplace's formula.
37 * In particular, the determinant is expanded along the last row.
38 * The cols array is a list of columns that remain in the currect submatrix.
40 static evalue
*determinant_cols(evalue
***matrix
, int dim
, int *cols
)
50 evalue_copy(det
, matrix
[0][cols
[0]]);
55 evalue_set_si(&mone
, -1, 1);
57 newcols
= ALLOCN(int, dim
-1);
58 for (j
= 1; j
< dim
; ++j
)
59 newcols
[j
-1] = cols
[j
];
60 for (j
= 0; j
< dim
; ++j
) {
62 newcols
[j
-1] = cols
[j
-1];
63 tmp
= determinant_cols(matrix
, dim
-1, newcols
);
64 emul(matrix
[dim
-1][cols
[j
]], tmp
);
75 free_evalue_refs(&mone
);
80 static evalue
*determinant(evalue
***matrix
, int dim
)
83 int *cols
= ALLOCN(int, dim
);
86 for (i
= 0; i
< dim
; ++i
)
89 det
= determinant_cols(matrix
, dim
, cols
);
96 /* Compute the facet of P that saturates constraint c.
98 static Polyhedron
*facet(Polyhedron
*P
, int c
, unsigned MaxRays
)
101 Vector
*row
= Vector_Alloc(1+P
->Dimension
+1);
102 Vector_Copy(P
->Constraint
[c
]+1, row
->p
+1, P
->Dimension
+1);
103 F
= AddConstraints(row
->p
, 1, P
, MaxRays
);
108 /* Substitute parameters by the corresponding element in subs
110 static evalue
*evalue_substitute_new(evalue
*e
, evalue
**subs
)
116 if (value_notzero_p(e
->d
)) {
122 assert(e
->x
.p
->type
== polynomial
);
125 for (i
= e
->x
.p
->size
-1; i
> 0; --i
) {
126 c
= evalue_substitute_new(&e
->x
.p
->arr
[i
], subs
);
129 emul(subs
[e
->x
.p
->pos
-1], res
);
131 c
= evalue_substitute_new(&e
->x
.p
->arr
[0], subs
);
138 struct parameter_point
{
143 struct parameter_point
*parameter_point_new(unsigned nparam
)
145 struct parameter_point
*point
= ALLOC(struct parameter_point
);
146 point
->coord
= Vector_Alloc(nparam
+1);
151 evalue
**parameter_point_evalue(struct parameter_point
*point
)
154 unsigned nparam
= point
->coord
->Size
-1;
159 point
->e
= ALLOCN(evalue
*, nparam
);
160 for (j
= 0; j
< nparam
; ++j
) {
161 point
->e
[j
] = ALLOC(evalue
);
162 value_init(point
->e
[j
]->d
);
163 evalue_set(point
->e
[j
], point
->coord
->p
[j
], point
->coord
->p
[nparam
]);
169 void parameter_point_free(struct parameter_point
*point
)
172 unsigned nparam
= point
->coord
->Size
-1;
174 Vector_Free(point
->coord
);
177 for (i
= 0; i
< nparam
; ++i
)
178 evalue_free(point
->e
[i
]);
184 /* Computes point in pameter space where polyhedron is non-empty.
186 static struct parameter_point
*non_empty_point(Param_Domain
*D
)
188 unsigned nparam
= D
->Domain
->Dimension
;
189 struct parameter_point
*point
;
192 v
= inner_point(D
->Domain
);
193 point
= parameter_point_new(nparam
);
194 Vector_Copy(v
->p
+1, point
->coord
->p
, nparam
+1);
200 static Matrix
*barycenter(Param_Polyhedron
*PP
, Param_Domain
*D
)
203 Matrix
*center
= NULL
;
213 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
)
216 center
= Matrix_Copy(V
->Vertex
);
217 nparam
= center
->NbColumns
- 2;
219 for (i
= 0; i
< center
->NbRows
; ++i
) {
220 value_assign(fc
, center
->p
[i
][nparam
+1]);
221 value_lcm(center
->p
[i
][nparam
+1],
222 fc
, V
->Vertex
->p
[i
][nparam
+1]);
223 value_division(fc
, center
->p
[i
][nparam
+1], fc
);
224 value_division(fv
, center
->p
[i
][nparam
+1],
225 V
->Vertex
->p
[i
][nparam
+1]);
226 Vector_Combine(center
->p
[i
], V
->Vertex
->p
[i
], center
->p
[i
],
230 END_FORALL_PVertex_in_ParamPolyhedron
;
235 value_set_si(denom
, nbV
);
236 for (i
= 0; i
< center
->NbRows
; ++i
) {
237 value_multiply(center
->p
[i
][nparam
+1], center
->p
[i
][nparam
+1], denom
);
238 Vector_Normalize(center
->p
[i
], nparam
+2);
245 static Matrix
*triangulation_vertex(Param_Polyhedron
*PP
, Param_Domain
*D
,
250 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
)
252 END_FORALL_PVertex_in_ParamPolyhedron
;
258 /* Compute dim! times the volume of polyhedron F in Param_Domain D.
259 * If F is a simplex, then the volume is computed of a recursive pyramid
260 * over F with the points already in matrix.
261 * Otherwise, the barycenter of F is added to matrix and the function
262 * is called recursively on the facets of F.
264 * The first row of matrix contain the _negative_ of the first point.
265 * The remaining rows of matrix contain the distance of the corresponding
266 * point to the first point.
268 static evalue
*volume_in_domain(Param_Polyhedron
*PP
, Param_Domain
*D
,
269 unsigned dim
, evalue
***matrix
,
270 struct parameter_point
*point
,
271 int row
, Polyhedron
*F
,
272 struct barvinok_options
*options
);
274 static evalue
*volume_triangulate(Param_Polyhedron
*PP
, Param_Domain
*D
,
275 unsigned dim
, evalue
***matrix
,
276 struct parameter_point
*point
,
277 int row
, Polyhedron
*F
,
278 struct barvinok_options
*options
)
285 unsigned cut_MaxRays
= options
->MaxRays
;
286 unsigned nparam
= PP
->V
->Vertex
->NbColumns
-2;
289 POL_UNSET(cut_MaxRays
, POL_INTEGER
);
292 evalue_set_si(&mone
, -1, 1);
294 if (options
->approx
->volume_triangulate
== BV_VOL_BARYCENTER
)
295 center
= barycenter(PP
, D
);
297 center
= triangulation_vertex(PP
, D
, F
);
298 for (j
= 0; j
< dim
; ++j
)
299 matrix
[row
][j
] = vertex2evalue(center
->p
[j
], center
->NbColumns
- 2);
300 if (options
->approx
->volume_triangulate
== BV_VOL_BARYCENTER
)
303 v
= Vector_Alloc(1+nparam
+1);
306 for (j
= 0; j
< dim
; ++j
)
307 emul(&mone
, matrix
[row
][j
]);
309 for (j
= 0; j
< dim
; ++j
)
310 eadd(matrix
[0][j
], matrix
[row
][j
]);
314 POL_ENSURE_FACETS(F
);
315 for (j
= F
->NbEq
; j
< F
->NbConstraints
; ++j
) {
318 if (First_Non_Zero(F
->Constraint
[j
]+1, dim
) == -1)
320 if (options
->approx
->volume_triangulate
!= BV_VOL_BARYCENTER
) {
321 Param_Inner_Product(F
->Constraint
[j
], center
, v
->p
);
322 if (First_Non_Zero(v
->p
+1, nparam
+1) == -1)
325 FF
= facet(F
, j
, options
->MaxRays
);
326 FD
= Param_Polyhedron_Facet(PP
, D
, F
->Constraint
[j
]);
327 tmp
= volume_in_domain(PP
, FD
, dim
, matrix
, point
,
336 Param_Domain_Free(FD
);
339 if (options
->approx
->volume_triangulate
!= BV_VOL_BARYCENTER
)
342 for (j
= 0; j
< dim
; ++j
)
343 evalue_free(matrix
[row
][j
]);
345 free_evalue_refs(&mone
);
349 static evalue
*volume_simplex(Param_Polyhedron
*PP
, Param_Domain
*D
,
350 unsigned dim
, evalue
***matrix
,
351 struct parameter_point
*point
,
352 int row
, struct barvinok_options
*options
)
359 options
->stats
->volume_simplices
++;
362 evalue_set_si(&mone
, -1, 1);
365 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
) /* _ix, _bx internal counters */
366 for (j
= 0; j
< dim
; ++j
) {
367 matrix
[i
][j
] = vertex2evalue(V
->Vertex
->p
[j
],
368 V
->Vertex
->NbColumns
- 2);
370 emul(&mone
, matrix
[i
][j
]);
372 eadd(matrix
[0][j
], matrix
[i
][j
]);
375 END_FORALL_PVertex_in_ParamPolyhedron
;
377 vol
= determinant(matrix
+1, dim
);
379 val
= evalue_substitute_new(vol
, parameter_point_evalue(point
));
381 assert(value_notzero_p(val
->d
));
382 assert(value_notzero_p(val
->x
.n
));
383 if (value_neg_p(val
->x
.n
))
388 for (i
= row
; i
< dim
+1; ++i
)
389 for (j
= 0; j
< dim
; ++j
)
390 evalue_free(matrix
[i
][j
]);
392 free_evalue_refs(&mone
);
397 static evalue
*volume_triangulate_lift(Param_Polyhedron
*PP
, Param_Domain
*D
,
398 unsigned dim
, evalue
***matrix
,
399 struct parameter_point
*point
,
400 int row
, struct barvinok_options
*options
)
402 const static int MAX_TRY
=10;
407 Matrix
*FixedRays
, *M
;
415 nv
= (PP
->nbV
- 1)/(8*sizeof(int)) + 1;
416 SD
.F
= ALLOCN(unsigned, nv
);
418 FixedRays
= Matrix_Alloc(PP
->nbV
+1, 1+dim
+2);
420 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
)
421 unsigned nparam
= V
->Vertex
->NbColumns
- 2;
422 Param_Vertex_Common_Denominator(V
);
423 for (i
= 0; i
< V
->Vertex
->NbRows
; ++i
) {
424 value_multiply(FixedRays
->p
[nbV
][1+i
], V
->Vertex
->p
[i
][nparam
],
425 point
->coord
->p
[nparam
]);
426 Inner_Product(V
->Vertex
->p
[i
], point
->coord
->p
, nparam
,
427 &FixedRays
->p
[nbV
][1+dim
]);
428 value_addto(FixedRays
->p
[nbV
][1+i
], FixedRays
->p
[nbV
][1+i
],
429 FixedRays
->p
[nbV
][1+dim
]);
431 value_multiply(FixedRays
->p
[nbV
][1+dim
+1], V
->Vertex
->p
[0][nparam
+1],
432 point
->coord
->p
[nparam
]);
433 value_set_si(FixedRays
->p
[nbV
][0], 1);
435 END_FORALL_PVertex_in_ParamPolyhedron
;
436 value_set_si(FixedRays
->p
[nbV
][0], 1);
437 value_set_si(FixedRays
->p
[nbV
][1+dim
], 1);
438 FixedRays
->NbRows
= nbV
+1;
443 /* Usually vol should still be NULL */
449 assert(t
<= MAX_TRY
);
452 for (i
= 0; i
< nbV
; ++i
)
453 value_set_si(FixedRays
->p
[i
][1+dim
], random_int((t
+1)*dim
*nbV
)+1);
455 M
= Matrix_Copy(FixedRays
);
456 L
= Rays2Polyhedron(M
, options
->MaxRays
);
459 POL_ENSURE_FACETS(L
);
460 for (i
= 0; i
< L
->NbConstraints
; ++i
) {
462 /* Ignore perpendicular facets, i.e., facets with 0 z-coordinate */
463 if (value_negz_p(L
->Constraint
[i
][1+dim
]))
466 memset(SD
.F
, 0, nv
* sizeof(unsigned));
469 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
) /* _ix, _bx internal */
470 Inner_Product(FixedRays
->p
[nbV
]+1, L
->Constraint
[i
]+1, dim
+2, &tmp
);
471 if (value_zero_p(tmp
)) {
478 END_FORALL_PVertex_in_ParamPolyhedron
;
479 assert(r
== (dim
-row
)+1);
481 s
= volume_simplex(PP
, &SD
, dim
, matrix
, point
, row
, options
);
490 Matrix_Free(FixedRays
);
497 static evalue
*volume_in_domain(Param_Polyhedron
*PP
, Param_Domain
*D
,
498 unsigned dim
, evalue
***matrix
,
499 struct parameter_point
*point
,
500 int row
, Polyhedron
*F
,
501 struct barvinok_options
*options
)
510 FORALL_PVertex_in_ParamPolyhedron(V
, D
, PP
)
512 END_FORALL_PVertex_in_ParamPolyhedron
;
514 if (nbV
> (dim
-row
) + 1) {
515 if (options
->approx
->volume_triangulate
== BV_VOL_LIFT
)
516 vol
= volume_triangulate_lift(PP
, D
, dim
, matrix
, point
,
519 vol
= volume_triangulate(PP
, D
, dim
, matrix
, point
,
522 assert(nbV
== (dim
-row
) + 1);
523 vol
= volume_simplex(PP
, D
, dim
, matrix
, point
, row
, options
);
529 evalue
* Param_Polyhedron_Volume(Polyhedron
*P
, Polyhedron
* C
,
530 struct barvinok_options
*options
)
533 unsigned nparam
= C
->Dimension
;
534 unsigned nvar
= P
->Dimension
- C
->Dimension
;
535 Param_Polyhedron
*PP
;
541 struct evalue_section
*s
;
545 if (options
->approx
->approximation
== BV_APPROX_SIGN_NONE
)
548 if (options
->approx
->approximation
!= BV_APPROX_SIGN_APPROX
) {
549 int pa
= options
->approx
->approximation
;
550 assert(pa
== BV_APPROX_SIGN_UPPER
|| pa
== BV_APPROX_SIGN_LOWER
);
552 P
= Polyhedron_Flate(P
, nparam
, pa
== BV_APPROX_SIGN_UPPER
,
555 /* Don't deflate/inflate again (on this polytope) */
556 options
->approx
->approximation
= BV_APPROX_SIGN_APPROX
;
557 vol
= barvinok_enumerate_with_options(P
, C
, options
);
558 options
->approx
->approximation
= pa
;
564 TC
= true_context(P
, C
, options
->MaxRays
);
566 MaxRays
= options
->MaxRays
;
567 POL_UNSET(options
->MaxRays
, POL_INTEGER
);
570 Factorial(nvar
, &fact
);
572 PP
= Polyhedron2Param_Polyhedron(P
, C
, options
);
574 for (nd
= 0, D
= PP
->D
; D
; ++nd
, D
= D
->next
);
575 s
= ALLOCN(struct evalue_section
, nd
);
577 matrix
= ALLOCN(evalue
**, nvar
+1);
578 for (i
= 0; i
< nvar
+1; ++i
)
579 matrix
[i
] = ALLOCN(evalue
*, nvar
);
581 FORALL_REDUCED_DOMAIN(PP
, TC
, nd
, options
, i
, D
, rVD
)
583 struct parameter_point
*point
;
585 CA
= align_context(D
->Domain
, P
->Dimension
, MaxRays
);
586 F
= DomainIntersection(P
, CA
, options
->MaxRays
);
589 point
= non_empty_point(D
);
591 s
[i
].E
= volume_in_domain(PP
, D
, nvar
, matrix
, point
, 0, F
, options
);
593 parameter_point_free(point
);
594 evalue_div(s
[i
].E
, fact
);
595 END_FORALL_REDUCED_DOMAIN
596 options
->MaxRays
= MaxRays
;
599 vol
= evalue_from_section_array(s
, nd
);
602 for (i
= 0; i
< nvar
+1; ++i
)
605 Param_Polyhedron_Free(PP
);