volume.c: keep track of number of simplices in volume computation
[barvinok.git] / barvinok.cc
blobae95f5825e8de7d8ad2d57ed6fd44c65c53ba0c0
1 #include <assert.h>
2 #include <iostream>
3 #include <vector>
4 #include <deque>
5 #include <string>
6 #include <sstream>
7 #include <gmp.h>
8 #include <NTL/mat_ZZ.h>
9 #include <NTL/LLL.h>
10 #include <barvinok/util.h>
11 #include <barvinok/evalue.h>
12 extern "C" {
13 #include "piputil.h"
15 #include "config.h"
16 #include <barvinok/barvinok.h>
17 #include <barvinok/genfun.h>
18 #include <barvinok/options.h>
19 #include <barvinok/sample.h>
20 #include "conversion.h"
21 #include "decomposer.h"
22 #include "lattice_point.h"
23 #include "reduce_domain.h"
24 #include "genfun_constructor.h"
25 #include "remove_equalities.h"
26 #include "scale.h"
27 #include "volume.h"
29 #ifdef NTL_STD_CXX
30 using namespace NTL;
31 #endif
32 using std::cerr;
33 using std::cout;
34 using std::endl;
35 using std::vector;
36 using std::deque;
37 using std::string;
38 using std::ostringstream;
40 #define ALLOC(t,p) p = (t*)malloc(sizeof(*p))
42 class dpoly_n {
43 public:
44 Matrix *coeff;
45 ~dpoly_n() {
46 Matrix_Free(coeff);
48 dpoly_n(int d, ZZ& degree_0, ZZ& degree_1, int offset = 0) {
49 Value d0, d1;
50 value_init(d0);
51 value_init(d1);
52 zz2value(degree_0, d0);
53 zz2value(degree_1, d1);
54 coeff = Matrix_Alloc(d+1, d+1+1);
55 value_set_si(coeff->p[0][0], 1);
56 value_set_si(coeff->p[0][d+1], 1);
57 for (int i = 1; i <= d; ++i) {
58 value_multiply(coeff->p[i][0], coeff->p[i-1][0], d0);
59 Vector_Combine(coeff->p[i-1], coeff->p[i-1]+1, coeff->p[i]+1,
60 d1, d0, i);
61 value_set_si(coeff->p[i][d+1], i);
62 value_multiply(coeff->p[i][d+1], coeff->p[i][d+1], coeff->p[i-1][d+1]);
63 value_decrement(d0, d0);
65 value_clear(d0);
66 value_clear(d1);
68 void div(dpoly& d, Vector *count, ZZ& sign) {
69 int len = coeff->NbRows;
70 Matrix * c = Matrix_Alloc(coeff->NbRows, coeff->NbColumns);
71 Value tmp;
72 value_init(tmp);
73 for (int i = 0; i < len; ++i) {
74 Vector_Copy(coeff->p[i], c->p[i], len+1);
75 for (int j = 1; j <= i; ++j) {
76 zz2value(d.coeff[j], tmp);
77 value_multiply(tmp, tmp, c->p[i][len]);
78 value_oppose(tmp, tmp);
79 Vector_Combine(c->p[i], c->p[i-j], c->p[i],
80 c->p[i-j][len], tmp, len);
81 value_multiply(c->p[i][len], c->p[i][len], c->p[i-j][len]);
83 zz2value(d.coeff[0], tmp);
84 value_multiply(c->p[i][len], c->p[i][len], tmp);
86 if (sign == -1) {
87 value_set_si(tmp, -1);
88 Vector_Scale(c->p[len-1], count->p, tmp, len);
89 value_assign(count->p[len], c->p[len-1][len]);
90 } else
91 Vector_Copy(c->p[len-1], count->p, len+1);
92 Vector_Normalize(count->p, len+1);
93 value_clear(tmp);
94 Matrix_Free(c);
98 const int MAX_TRY=10;
100 * Searches for a vector that is not orthogonal to any
101 * of the rays in rays.
103 static void nonorthog(mat_ZZ& rays, vec_ZZ& lambda)
105 int dim = rays.NumCols();
106 bool found = false;
107 lambda.SetLength(dim);
108 if (dim == 0)
109 return;
111 for (int i = 2; !found && i <= 50*dim; i+=4) {
112 for (int j = 0; j < MAX_TRY; ++j) {
113 for (int k = 0; k < dim; ++k) {
114 int r = random_int(i)+2;
115 int v = (2*(r%2)-1) * (r >> 1);
116 lambda[k] = v;
118 int k = 0;
119 for (; k < rays.NumRows(); ++k)
120 if (lambda * rays[k] == 0)
121 break;
122 if (k == rays.NumRows()) {
123 found = true;
124 break;
128 assert(found);
131 static void add_rays(mat_ZZ& rays, Polyhedron *i, int *r, int nvar = -1,
132 bool all = false)
134 unsigned dim = i->Dimension;
135 if (nvar == -1)
136 nvar = dim;
137 for (int k = 0; k < i->NbRays; ++k) {
138 if (!value_zero_p(i->Ray[k][dim+1]))
139 continue;
140 if (!all && nvar != dim && First_Non_Zero(i->Ray[k]+1, nvar) == -1)
141 continue;
142 values2zz(i->Ray[k]+1, rays[(*r)++], nvar);
146 static void mask_r(Matrix *f, int nr, Vector *lcm, int p, Vector *val, evalue *ev)
148 unsigned nparam = lcm->Size;
150 if (p == nparam) {
151 Vector * prod = Vector_Alloc(f->NbRows);
152 Matrix_Vector_Product(f, val->p, prod->p);
153 int isint = 1;
154 for (int i = 0; i < nr; ++i) {
155 value_modulus(prod->p[i], prod->p[i], f->p[i][nparam+1]);
156 isint &= value_zero_p(prod->p[i]);
158 value_set_si(ev->d, 1);
159 value_init(ev->x.n);
160 value_set_si(ev->x.n, isint);
161 Vector_Free(prod);
162 return;
165 Value tmp;
166 value_init(tmp);
167 if (value_one_p(lcm->p[p]))
168 mask_r(f, nr, lcm, p+1, val, ev);
169 else {
170 value_assign(tmp, lcm->p[p]);
171 value_set_si(ev->d, 0);
172 ev->x.p = new_enode(periodic, VALUE_TO_INT(tmp), p+1);
173 do {
174 value_decrement(tmp, tmp);
175 value_assign(val->p[p], tmp);
176 mask_r(f, nr, lcm, p+1, val, &ev->x.p->arr[VALUE_TO_INT(tmp)]);
177 } while (value_pos_p(tmp));
179 value_clear(tmp);
182 static void mask_fractional(Matrix *f, evalue *factor)
184 int nr = f->NbRows, nc = f->NbColumns;
185 int n;
186 bool found = false;
187 for (n = 0; n < nr && value_notzero_p(f->p[n][nc-1]); ++n)
188 if (value_notone_p(f->p[n][nc-1]) &&
189 value_notmone_p(f->p[n][nc-1]))
190 found = true;
191 if (!found)
192 return;
194 evalue EP;
195 nr = n;
197 Value m;
198 value_init(m);
200 evalue EV;
201 value_init(EV.d);
202 value_init(EV.x.n);
203 value_set_si(EV.x.n, 1);
205 for (n = 0; n < nr; ++n) {
206 value_assign(m, f->p[n][nc-1]);
207 if (value_one_p(m) || value_mone_p(m))
208 continue;
210 int j = normal_mod(f->p[n], nc-1, &m);
211 if (j == nc-1) {
212 free_evalue_refs(factor);
213 value_init(factor->d);
214 evalue_set_si(factor, 0, 1);
215 break;
217 vec_ZZ row;
218 values2zz(f->p[n], row, nc-1);
219 ZZ g;
220 value2zz(m, g);
221 if (j < (nc-1)-1 && row[j] > g/2) {
222 for (int k = j; k < (nc-1); ++k)
223 if (row[k] != 0)
224 row[k] = g - row[k];
227 value_init(EP.d);
228 value_set_si(EP.d, 0);
229 EP.x.p = new_enode(relation, 2, 0);
230 value_clear(EP.x.p->arr[1].d);
231 EP.x.p->arr[1] = *factor;
232 evalue *ev = &EP.x.p->arr[0];
233 value_set_si(ev->d, 0);
234 ev->x.p = new_enode(fractional, 3, -1);
235 evalue_set_si(&ev->x.p->arr[1], 0, 1);
236 evalue_set_si(&ev->x.p->arr[2], 1, 1);
237 evalue *E = multi_monom(row);
238 value_assign(EV.d, m);
239 emul(&EV, E);
240 value_clear(ev->x.p->arr[0].d);
241 ev->x.p->arr[0] = *E;
242 delete E;
243 *factor = EP;
246 value_clear(m);
247 free_evalue_refs(&EV);
253 static void mask_table(Matrix *f, evalue *factor)
255 int nr = f->NbRows, nc = f->NbColumns;
256 int n;
257 bool found = false;
258 for (n = 0; n < nr && value_notzero_p(f->p[n][nc-1]); ++n)
259 if (value_notone_p(f->p[n][nc-1]) &&
260 value_notmone_p(f->p[n][nc-1]))
261 found = true;
262 if (!found)
263 return;
265 Value tmp;
266 value_init(tmp);
267 nr = n;
268 unsigned np = nc - 2;
269 Vector *lcm = Vector_Alloc(np);
270 Vector *val = Vector_Alloc(nc);
271 Vector_Set(val->p, 0, nc);
272 value_set_si(val->p[np], 1);
273 Vector_Set(lcm->p, 1, np);
274 for (n = 0; n < nr; ++n) {
275 if (value_one_p(f->p[n][nc-1]) ||
276 value_mone_p(f->p[n][nc-1]))
277 continue;
278 for (int j = 0; j < np; ++j)
279 if (value_notzero_p(f->p[n][j])) {
280 Gcd(f->p[n][j], f->p[n][nc-1], &tmp);
281 value_division(tmp, f->p[n][nc-1], tmp);
282 value_lcm(tmp, lcm->p[j], &lcm->p[j]);
285 evalue EP;
286 value_init(EP.d);
287 mask_r(f, nr, lcm, 0, val, &EP);
288 value_clear(tmp);
289 Vector_Free(val);
290 Vector_Free(lcm);
291 emul(&EP,factor);
292 free_evalue_refs(&EP);
295 static void mask(Matrix *f, evalue *factor, barvinok_options *options)
297 if (options->lookup_table)
298 mask_table(f, factor);
299 else
300 mask_fractional(f, factor);
303 /* This structure encodes the power of the term in a rational generating function.
305 * Either E == NULL or constant = 0
306 * If E != NULL, then the power is E
307 * If E == NULL, then the power is coeff * param[pos] + constant
309 struct term_info {
310 evalue *E;
311 ZZ constant;
312 ZZ coeff;
313 int pos;
316 /* Returns the power of (t+1) in the term of a rational generating function,
317 * i.e., the scalar product of the actual lattice point and lambda.
318 * The lattice point is the unique lattice point in the fundamental parallelepiped
319 * of the unimodual cone i shifted to the parametric vertex V.
321 * PD is the parameter domain, which, if != NULL, may be used to simply the
322 * resulting expression.
324 * The result is returned in term.
326 void lattice_point(Param_Vertices* V, const mat_ZZ& rays, vec_ZZ& lambda,
327 term_info* term, Polyhedron *PD, barvinok_options *options)
329 unsigned nparam = V->Vertex->NbColumns - 2;
330 unsigned dim = rays.NumCols();
331 mat_ZZ vertex;
332 vertex.SetDims(V->Vertex->NbRows, nparam+1);
333 Value lcm, tmp;
334 value_init(lcm);
335 value_init(tmp);
336 value_set_si(lcm, 1);
337 for (int j = 0; j < V->Vertex->NbRows; ++j) {
338 value_lcm(lcm, V->Vertex->p[j][nparam+1], &lcm);
340 if (value_notone_p(lcm)) {
341 Matrix * mv = Matrix_Alloc(dim, nparam+1);
342 for (int j = 0 ; j < dim; ++j) {
343 value_division(tmp, lcm, V->Vertex->p[j][nparam+1]);
344 Vector_Scale(V->Vertex->p[j], mv->p[j], tmp, nparam+1);
347 term->E = lattice_point(rays, lambda, mv, lcm, PD, options);
348 term->constant = 0;
350 Matrix_Free(mv);
351 value_clear(lcm);
352 value_clear(tmp);
353 return;
355 for (int i = 0; i < V->Vertex->NbRows; ++i) {
356 assert(value_one_p(V->Vertex->p[i][nparam+1])); // for now
357 values2zz(V->Vertex->p[i], vertex[i], nparam+1);
360 vec_ZZ num;
361 num = lambda * vertex;
363 int p = -1;
364 int nn = 0;
365 for (int j = 0; j < nparam; ++j)
366 if (num[j] != 0) {
367 ++nn;
368 p = j;
370 if (nn >= 2) {
371 term->E = multi_monom(num);
372 term->constant = 0;
373 } else {
374 term->E = NULL;
375 term->constant = num[nparam];
376 term->pos = p;
377 if (p != -1)
378 term->coeff = num[p];
381 value_clear(lcm);
382 value_clear(tmp);
386 struct counter : public np_base {
387 vec_ZZ lambda;
388 mat_ZZ vertex;
389 vec_ZZ den;
390 ZZ sign;
391 vec_ZZ num;
392 ZZ offset;
393 int j;
394 mpq_t count;
396 counter(unsigned dim) : np_base(dim) {
397 den.SetLength(dim);
398 mpq_init(count);
401 virtual void init(Polyhedron *P) {
402 randomvector(P, lambda, dim);
405 virtual void reset() {
406 mpq_set_si(count, 0, 0);
409 ~counter() {
410 mpq_clear(count);
413 virtual void handle(const mat_ZZ& rays, Value *vertex, const QQ& c,
414 unsigned long det, int *closed, barvinok_options *options);
415 virtual void get_count(Value *result) {
416 assert(value_one_p(&count[0]._mp_den));
417 value_assign(*result, &count[0]._mp_num);
421 void counter::handle(const mat_ZZ& rays, Value *V, const QQ& c, unsigned long det,
422 int *closed, barvinok_options *options)
424 for (int k = 0; k < dim; ++k) {
425 if (lambda * rays[k] == 0)
426 throw Orthogonal;
429 assert(c.d == 1);
430 assert(c.n == 1 || c.n == -1);
431 sign = c.n;
433 lattice_point(V, rays, vertex, det, closed);
434 num = vertex * lambda;
435 den = rays * lambda;
436 offset = 0;
437 normalize(sign, offset, den);
439 num[0] += offset;
440 dpoly d(dim, num[0]);
441 for (int k = 1; k < num.length(); ++k) {
442 num[k] += offset;
443 dpoly term(dim, num[k]);
444 d += term;
446 dpoly n(dim, den[0], 1);
447 for (int k = 1; k < dim; ++k) {
448 dpoly fact(dim, den[k], 1);
449 n *= fact;
451 d.div(n, count, sign);
454 struct bfe_term : public bfc_term_base {
455 vector<evalue *> factors;
457 bfe_term(int len) : bfc_term_base(len) {
460 ~bfe_term() {
461 for (int i = 0; i < factors.size(); ++i) {
462 if (!factors[i])
463 continue;
464 free_evalue_refs(factors[i]);
465 delete factors[i];
470 static void print_int_vector(int *v, int len, char *name)
472 cerr << name << endl;
473 for (int j = 0; j < len; ++j) {
474 cerr << v[j] << " ";
476 cerr << endl;
479 static void print_bfc_terms(mat_ZZ& factors, bfc_vec& v)
481 cerr << endl;
482 cerr << "factors" << endl;
483 cerr << factors << endl;
484 for (int i = 0; i < v.size(); ++i) {
485 cerr << "term: " << i << endl;
486 print_int_vector(v[i]->powers, factors.NumRows(), "powers");
487 cerr << "terms" << endl;
488 cerr << v[i]->terms << endl;
489 bfc_term* bfct = static_cast<bfc_term *>(v[i]);
490 cerr << bfct->c << endl;
494 static void print_bfe_terms(mat_ZZ& factors, bfc_vec& v)
496 cerr << endl;
497 cerr << "factors" << endl;
498 cerr << factors << endl;
499 for (int i = 0; i < v.size(); ++i) {
500 cerr << "term: " << i << endl;
501 print_int_vector(v[i]->powers, factors.NumRows(), "powers");
502 cerr << "terms" << endl;
503 cerr << v[i]->terms << endl;
504 bfe_term* bfet = static_cast<bfe_term *>(v[i]);
505 for (int j = 0; j < v[i]->terms.NumRows(); ++j) {
506 char * test[] = {"a", "b"};
507 print_evalue(stderr, bfet->factors[j], test);
508 fprintf(stderr, "\n");
513 struct bfcounter : public bfcounter_base {
514 mpq_t count;
516 bfcounter(unsigned dim) : bfcounter_base(dim) {
517 mpq_init(count);
518 lower = 1;
520 ~bfcounter() {
521 mpq_clear(count);
523 virtual void base(mat_ZZ& factors, bfc_vec& v);
524 virtual void get_count(Value *result) {
525 assert(value_one_p(&count[0]._mp_den));
526 value_assign(*result, &count[0]._mp_num);
530 void bfcounter::base(mat_ZZ& factors, bfc_vec& v)
532 unsigned nf = factors.NumRows();
534 for (int i = 0; i < v.size(); ++i) {
535 bfc_term* bfct = static_cast<bfc_term *>(v[i]);
536 int total_power = 0;
537 // factor is always positive, so we always
538 // change signs
539 for (int k = 0; k < nf; ++k)
540 total_power += v[i]->powers[k];
542 int j;
543 for (j = 0; j < nf; ++j)
544 if (v[i]->powers[j] > 0)
545 break;
547 dpoly D(total_power, factors[j][0], 1);
548 for (int k = 1; k < v[i]->powers[j]; ++k) {
549 dpoly fact(total_power, factors[j][0], 1);
550 D *= fact;
552 for ( ; ++j < nf; )
553 for (int k = 0; k < v[i]->powers[j]; ++k) {
554 dpoly fact(total_power, factors[j][0], 1);
555 D *= fact;
558 for (int k = 0; k < v[i]->terms.NumRows(); ++k) {
559 dpoly n(total_power, v[i]->terms[k][0]);
560 mpq_set_si(tcount, 0, 1);
561 n.div(D, tcount, one);
562 if (total_power % 2)
563 bfct->c[k].n = -bfct->c[k].n;
564 zz2value(bfct->c[k].n, tn);
565 zz2value(bfct->c[k].d, td);
567 mpz_mul(mpq_numref(tcount), mpq_numref(tcount), tn);
568 mpz_mul(mpq_denref(tcount), mpq_denref(tcount), td);
569 mpq_canonicalize(tcount);
570 mpq_add(count, count, tcount);
572 delete v[i];
577 /* Check whether the polyhedron is unbounded and if so,
578 * check whether it has any (and therefore an infinite number of)
579 * integer points.
580 * If one of the vertices is integer, then we are done.
581 * Otherwise, transform the polyhedron such that one of the rays
582 * is the first unit vector and cut it off at a height that ensures
583 * that if the whole polyhedron has any points, then the remaining part
584 * has integer points. In particular we add the largest coefficient
585 * of a ray to the highest vertex (rounded up).
587 static bool Polyhedron_is_infinite(Polyhedron *P, Value* result,
588 barvinok_options *options)
590 int r = 0;
591 Matrix *M, *M2;
592 Value c, tmp;
593 Value g;
594 bool first;
595 Vector *v;
596 Value offset, size;
597 Polyhedron *R;
599 if (P->NbBid == 0)
600 for (; r < P->NbRays; ++r)
601 if (value_zero_p(P->Ray[r][P->Dimension+1]))
602 break;
603 if (P->NbBid == 0 && r == P->NbRays)
604 return false;
606 if (options->count_sample_infinite) {
607 Vector *sample;
609 sample = Polyhedron_Sample(P, options);
610 if (!sample)
611 value_set_si(*result, 0);
612 else {
613 value_set_si(*result, -1);
614 Vector_Free(sample);
616 return true;
619 for (int i = 0; i < P->NbRays; ++i)
620 if (value_one_p(P->Ray[i][1+P->Dimension])) {
621 value_set_si(*result, -1);
622 return true;
625 value_init(g);
626 v = Vector_Alloc(P->Dimension+1);
627 Vector_Gcd(P->Ray[r]+1, P->Dimension, &g);
628 Vector_AntiScale(P->Ray[r]+1, v->p, g, P->Dimension+1);
629 M = unimodular_complete(v);
630 value_set_si(M->p[P->Dimension][P->Dimension], 1);
631 M2 = Transpose(M);
632 Matrix_Free(M);
633 P = Polyhedron_Preimage(P, M2, 0);
634 Matrix_Free(M2);
635 value_clear(g);
636 Vector_Free(v);
638 first = true;
639 value_init(offset);
640 value_init(size);
641 value_init(tmp);
642 value_set_si(size, 0);
644 for (int i = 0; i < P->NbBid; ++i) {
645 value_absolute(tmp, P->Ray[i][1]);
646 if (value_gt(tmp, size))
647 value_assign(size, tmp);
649 for (int i = P->NbBid; i < P->NbRays; ++i) {
650 if (value_zero_p(P->Ray[i][P->Dimension+1])) {
651 if (value_gt(P->Ray[i][1], size))
652 value_assign(size, P->Ray[i][1]);
653 continue;
655 mpz_cdiv_q(tmp, P->Ray[i][1], P->Ray[i][P->Dimension+1]);
656 if (first || value_gt(tmp, offset)) {
657 value_assign(offset, tmp);
658 first = false;
661 value_addto(offset, offset, size);
662 value_clear(size);
663 value_clear(tmp);
665 v = Vector_Alloc(P->Dimension+2);
666 value_set_si(v->p[0], 1);
667 value_set_si(v->p[1], -1);
668 value_assign(v->p[1+P->Dimension], offset);
669 R = AddConstraints(v->p, 1, P, options->MaxRays);
670 Polyhedron_Free(P);
671 P = R;
673 value_clear(offset);
674 Vector_Free(v);
676 value_init(c);
677 barvinok_count_with_options(P, &c, options);
678 Polyhedron_Free(P);
679 if (value_zero_p(c))
680 value_set_si(*result, 0);
681 else
682 value_set_si(*result, -1);
683 value_clear(c);
685 return true;
688 typedef Polyhedron * Polyhedron_p;
690 static void barvinok_count_f(Polyhedron *P, Value* result,
691 barvinok_options *options);
693 void barvinok_count_with_options(Polyhedron *P, Value* result,
694 struct barvinok_options *options)
696 unsigned dim;
697 int allocated = 0;
698 Polyhedron *Q;
699 bool infinite = false;
701 if (P->next)
702 fprintf(stderr,
703 "barvinok_count: input is a union; only first polyhedron is counted\n");
705 if (emptyQ2(P)) {
706 value_set_si(*result, 0);
707 return;
709 if (P->NbEq != 0) {
710 Q = NULL;
711 do {
712 P = remove_equalities(P);
713 P = DomainConstraintSimplify(P, options->MaxRays);
714 if (Q)
715 Polyhedron_Free(Q);
716 Q = P;
717 } while (!emptyQ(P) && P->NbEq != 0);
718 if (emptyQ(P)) {
719 Polyhedron_Free(P);
720 value_set_si(*result, 0);
721 return;
723 allocated = 1;
725 if (Polyhedron_is_infinite(P, result, options)) {
726 if (allocated)
727 Polyhedron_Free(P);
728 return;
730 if (P->Dimension == 0) {
731 /* Test whether the constraints are satisfied */
732 POL_ENSURE_VERTICES(P);
733 value_set_si(*result, !emptyQ(P));
734 if (allocated)
735 Polyhedron_Free(P);
736 return;
738 Q = Polyhedron_Factor(P, 0, NULL, options->MaxRays);
739 if (Q) {
740 if (allocated)
741 Polyhedron_Free(P);
742 P = Q;
743 allocated = 1;
746 barvinok_count_f(P, result, options);
747 if (value_neg_p(*result))
748 infinite = true;
749 if (Q && P->next && value_notzero_p(*result)) {
750 Value factor;
751 value_init(factor);
753 for (Q = P->next; Q; Q = Q->next) {
754 barvinok_count_f(Q, &factor, options);
755 if (value_neg_p(factor)) {
756 infinite = true;
757 continue;
758 } else if (Q->next && value_zero_p(factor)) {
759 value_set_si(*result, 0);
760 break;
762 value_multiply(*result, *result, factor);
765 value_clear(factor);
768 if (allocated)
769 Domain_Free(P);
770 if (infinite)
771 value_set_si(*result, -1);
774 void barvinok_count(Polyhedron *P, Value* result, unsigned NbMaxCons)
776 barvinok_options *options = barvinok_options_new_with_defaults();
777 options->MaxRays = NbMaxCons;
778 barvinok_count_with_options(P, result, options);
779 barvinok_options_free(options);
782 static void barvinok_count_f(Polyhedron *P, Value* result,
783 barvinok_options *options)
785 if (emptyQ2(P)) {
786 value_set_si(*result, 0);
787 return;
790 if (P->Dimension == 1)
791 return Line_Length(P, result);
793 int c = P->NbConstraints;
794 POL_ENSURE_FACETS(P);
795 if (c != P->NbConstraints || P->NbEq != 0)
796 return barvinok_count_with_options(P, result, options);
798 POL_ENSURE_VERTICES(P);
800 if (Polyhedron_is_infinite(P, result, options))
801 return;
803 np_base *cnt;
804 if (options->incremental_specialization == 2)
805 cnt = new bfcounter(P->Dimension);
806 else if (options->incremental_specialization == 1)
807 cnt = new icounter(P->Dimension);
808 else
809 cnt = new counter(P->Dimension);
810 cnt->start(P, options);
812 cnt->get_count(result);
813 delete cnt;
816 static void uni_polynom(int param, Vector *c, evalue *EP)
818 unsigned dim = c->Size-2;
819 value_init(EP->d);
820 value_set_si(EP->d,0);
821 EP->x.p = new_enode(polynomial, dim+1, param+1);
822 for (int j = 0; j <= dim; ++j)
823 evalue_set(&EP->x.p->arr[j], c->p[j], c->p[dim+1]);
826 static void multi_polynom(Vector *c, evalue* X, evalue *EP)
828 unsigned dim = c->Size-2;
829 evalue EC;
831 value_init(EC.d);
832 evalue_set(&EC, c->p[dim], c->p[dim+1]);
834 value_init(EP->d);
835 evalue_set(EP, c->p[dim], c->p[dim+1]);
837 for (int i = dim-1; i >= 0; --i) {
838 emul(X, EP);
839 value_assign(EC.x.n, c->p[i]);
840 eadd(&EC, EP);
842 free_evalue_refs(&EC);
845 Polyhedron *unfringe (Polyhedron *P, unsigned MaxRays)
847 int len = P->Dimension+2;
848 Polyhedron *T, *R = P;
849 Value g;
850 value_init(g);
851 Vector *row = Vector_Alloc(len);
852 value_set_si(row->p[0], 1);
854 R = DomainConstraintSimplify(Polyhedron_Copy(P), MaxRays);
856 Matrix *M = Matrix_Alloc(2, len-1);
857 value_set_si(M->p[1][len-2], 1);
858 for (int v = 0; v < P->Dimension; ++v) {
859 value_set_si(M->p[0][v], 1);
860 Polyhedron *I = Polyhedron_Image(R, M, 2+1);
861 value_set_si(M->p[0][v], 0);
862 for (int r = 0; r < I->NbConstraints; ++r) {
863 if (value_zero_p(I->Constraint[r][0]))
864 continue;
865 if (value_zero_p(I->Constraint[r][1]))
866 continue;
867 if (value_one_p(I->Constraint[r][1]))
868 continue;
869 if (value_mone_p(I->Constraint[r][1]))
870 continue;
871 value_absolute(g, I->Constraint[r][1]);
872 Vector_Set(row->p+1, 0, len-2);
873 value_division(row->p[1+v], I->Constraint[r][1], g);
874 mpz_fdiv_q(row->p[len-1], I->Constraint[r][2], g);
875 T = R;
876 R = AddConstraints(row->p, 1, R, MaxRays);
877 if (T != P)
878 Polyhedron_Free(T);
880 Polyhedron_Free(I);
882 Matrix_Free(M);
883 Vector_Free(row);
884 value_clear(g);
885 return R;
888 /* Check whether all rays point in the positive directions
889 * for the parameters
891 static bool Polyhedron_has_positive_rays(Polyhedron *P, unsigned nparam)
893 int r;
894 for (r = 0; r < P->NbRays; ++r)
895 if (value_zero_p(P->Ray[r][P->Dimension+1])) {
896 int i;
897 for (i = P->Dimension - nparam; i < P->Dimension; ++i)
898 if (value_neg_p(P->Ray[r][i+1]))
899 return false;
901 return true;
904 typedef evalue * evalue_p;
906 struct enumerator_base {
907 unsigned dim;
908 evalue ** vE;
909 evalue mone;
910 vertex_decomposer *vpd;
912 enumerator_base(unsigned dim, vertex_decomposer *vpd)
914 this->dim = dim;
915 this->vpd = vpd;
917 vE = new evalue_p[vpd->nbV];
918 for (int j = 0; j < vpd->nbV; ++j)
919 vE[j] = 0;
921 value_init(mone.d);
922 evalue_set_si(&mone, -1, 1);
925 void decompose_at(Param_Vertices *V, int _i, barvinok_options *options) {
926 //this->pVD = pVD;
928 vE[_i] = new evalue;
929 value_init(vE[_i]->d);
930 evalue_set_si(vE[_i], 0, 1);
932 vpd->decompose_at_vertex(V, _i, options);
935 virtual ~enumerator_base() {
936 for (int j = 0; j < vpd->nbV; ++j)
937 if (vE[j]) {
938 free_evalue_refs(vE[j]);
939 delete vE[j];
941 delete [] vE;
943 free_evalue_refs(&mone);
946 static enumerator_base *create(Polyhedron *P, unsigned dim, unsigned nbV,
947 barvinok_options *options);
950 struct enumerator : public signed_cone_consumer, public vertex_decomposer,
951 public enumerator_base {
952 vec_ZZ lambda;
953 vec_ZZ den;
954 ZZ sign;
955 term_info num;
956 Vector *c;
957 mpq_t count;
959 enumerator(Polyhedron *P, unsigned dim, unsigned nbV) :
960 vertex_decomposer(P, nbV, *this), enumerator_base(dim, this) {
961 this->P = P;
962 this->nbV = nbV;
963 randomvector(P, lambda, dim);
964 den.SetLength(dim);
965 c = Vector_Alloc(dim+2);
967 mpq_init(count);
970 ~enumerator() {
971 mpq_clear(count);
972 Vector_Free(c);
975 virtual void handle(const signed_cone& sc, barvinok_options *options);
978 void enumerator::handle(const signed_cone& sc, barvinok_options *options)
980 assert(sc.det == 1);
981 assert(!sc.closed);
982 int r = 0;
983 assert(sc.rays.NumRows() == dim);
984 for (int k = 0; k < dim; ++k) {
985 if (lambda * sc.rays[k] == 0)
986 throw Orthogonal;
989 sign = sc.sign;
991 lattice_point(V, sc.rays, lambda, &num, 0, options);
992 den = sc.rays * lambda;
993 normalize(sign, num.constant, den);
995 dpoly n(dim, den[0], 1);
996 for (int k = 1; k < dim; ++k) {
997 dpoly fact(dim, den[k], 1);
998 n *= fact;
1000 if (num.E != NULL) {
1001 ZZ one(INIT_VAL, 1);
1002 dpoly_n d(dim, num.constant, one);
1003 d.div(n, c, sign);
1004 evalue EV;
1005 multi_polynom(c, num.E, &EV);
1006 eadd(&EV , vE[vert]);
1007 free_evalue_refs(&EV);
1008 free_evalue_refs(num.E);
1009 delete num.E;
1010 } else if (num.pos != -1) {
1011 dpoly_n d(dim, num.constant, num.coeff);
1012 d.div(n, c, sign);
1013 evalue EV;
1014 uni_polynom(num.pos, c, &EV);
1015 eadd(&EV , vE[vert]);
1016 free_evalue_refs(&EV);
1017 } else {
1018 mpq_set_si(count, 0, 1);
1019 dpoly d(dim, num.constant);
1020 d.div(n, count, sign);
1021 evalue EV;
1022 value_init(EV.d);
1023 evalue_set(&EV, &count[0]._mp_num, &count[0]._mp_den);
1024 eadd(&EV , vE[vert]);
1025 free_evalue_refs(&EV);
1029 struct ienumerator_base : enumerator_base {
1030 evalue ** E_vertex;
1032 ienumerator_base(unsigned dim, vertex_decomposer *vpd) :
1033 enumerator_base(dim,vpd) {
1034 E_vertex = new evalue_p[dim];
1037 virtual ~ienumerator_base() {
1038 delete [] E_vertex;
1041 evalue *E_num(int i, int d) {
1042 return E_vertex[i + (dim-d)];
1046 struct cumulator {
1047 evalue *factor;
1048 evalue *v;
1049 dpoly_r *r;
1051 cumulator(evalue *factor, evalue *v, dpoly_r *r) :
1052 factor(factor), v(v), r(r) {}
1054 void cumulate(barvinok_options *options);
1056 virtual void add_term(const vector<int>& powers, evalue *f2) = 0;
1057 virtual ~cumulator() {}
1060 void cumulator::cumulate(barvinok_options *options)
1062 evalue cum; // factor * 1 * E_num[0]/1 * (E_num[0]-1)/2 *...
1063 evalue f;
1064 evalue t; // E_num[0] - (m-1)
1065 evalue *cst;
1066 evalue mone;
1068 if (options->lookup_table) {
1069 value_init(mone.d);
1070 evalue_set_si(&mone, -1, 1);
1073 value_init(cum.d);
1074 evalue_copy(&cum, factor);
1075 value_init(f.d);
1076 value_init(f.x.n);
1077 value_set_si(f.d, 1);
1078 value_set_si(f.x.n, 1);
1079 value_init(t.d);
1080 evalue_copy(&t, v);
1082 if (!options->lookup_table) {
1083 for (cst = &t; value_zero_p(cst->d); ) {
1084 if (cst->x.p->type == fractional)
1085 cst = &cst->x.p->arr[1];
1086 else
1087 cst = &cst->x.p->arr[0];
1091 for (int m = 0; m < r->len; ++m) {
1092 if (m > 0) {
1093 if (m > 1) {
1094 value_set_si(f.d, m);
1095 emul(&f, &cum);
1096 if (!options->lookup_table)
1097 value_subtract(cst->x.n, cst->x.n, cst->d);
1098 else
1099 eadd(&mone, &t);
1101 emul(&t, &cum);
1103 dpoly_r_term_list& current = r->c[r->len-1-m];
1104 dpoly_r_term_list::iterator j;
1105 for (j = current.begin(); j != current.end(); ++j) {
1106 if ((*j)->coeff == 0)
1107 continue;
1108 evalue *f2 = new evalue;
1109 value_init(f2->d);
1110 value_init(f2->x.n);
1111 zz2value((*j)->coeff, f2->x.n);
1112 zz2value(r->denom, f2->d);
1113 emul(&cum, f2);
1115 add_term((*j)->powers, f2);
1118 free_evalue_refs(&f);
1119 free_evalue_refs(&t);
1120 free_evalue_refs(&cum);
1121 if (options->lookup_table)
1122 free_evalue_refs(&mone);
1125 struct E_poly_term {
1126 vector<int> powers;
1127 evalue *E;
1130 struct ie_cum : public cumulator {
1131 vector<E_poly_term *> terms;
1133 ie_cum(evalue *factor, evalue *v, dpoly_r *r) : cumulator(factor, v, r) {}
1135 virtual void add_term(const vector<int>& powers, evalue *f2);
1138 void ie_cum::add_term(const vector<int>& powers, evalue *f2)
1140 int k;
1141 for (k = 0; k < terms.size(); ++k) {
1142 if (terms[k]->powers == powers) {
1143 eadd(f2, terms[k]->E);
1144 free_evalue_refs(f2);
1145 delete f2;
1146 break;
1149 if (k >= terms.size()) {
1150 E_poly_term *ET = new E_poly_term;
1151 ET->powers = powers;
1152 ET->E = f2;
1153 terms.push_back(ET);
1157 struct ienumerator : public signed_cone_consumer, public vertex_decomposer,
1158 public ienumerator_base {
1159 //Polyhedron *pVD;
1160 mat_ZZ den;
1161 mat_ZZ vertex;
1162 mpq_t tcount;
1164 ienumerator(Polyhedron *P, unsigned dim, unsigned nbV) :
1165 vertex_decomposer(P, nbV, *this), ienumerator_base(dim, this) {
1166 vertex.SetDims(1, dim);
1168 den.SetDims(dim, dim);
1169 mpq_init(tcount);
1172 ~ienumerator() {
1173 mpq_clear(tcount);
1176 virtual void handle(const signed_cone& sc, barvinok_options *options);
1177 void reduce(evalue *factor, const mat_ZZ& num, const mat_ZZ& den_f,
1178 barvinok_options *options);
1181 void ienumerator::reduce(evalue *factor, const mat_ZZ& num, const mat_ZZ& den_f,
1182 barvinok_options *options)
1184 unsigned len = den_f.NumRows(); // number of factors in den
1185 unsigned dim = num.NumCols();
1186 assert(num.NumRows() == 1);
1188 if (dim == 0) {
1189 eadd(factor, vE[vert]);
1190 return;
1193 vec_ZZ den_s;
1194 mat_ZZ den_r;
1195 vec_ZZ num_s;
1196 mat_ZZ num_p;
1198 split_one(num, num_s, num_p, den_f, den_s, den_r);
1200 vec_ZZ den_p;
1201 den_p.SetLength(len);
1203 ZZ one;
1204 one = 1;
1205 normalize(one, num_s, num_p, den_s, den_p, den_r);
1206 if (one != 1)
1207 emul(&mone, factor);
1209 int only_param = 0;
1210 int no_param = 0;
1211 for (int k = 0; k < len; ++k) {
1212 if (den_p[k] == 0)
1213 ++no_param;
1214 else if (den_s[k] == 0)
1215 ++only_param;
1217 if (no_param == 0) {
1218 reduce(factor, num_p, den_r, options);
1219 } else {
1220 int k, l;
1221 mat_ZZ pden;
1222 pden.SetDims(only_param, dim-1);
1224 for (k = 0, l = 0; k < len; ++k)
1225 if (den_s[k] == 0)
1226 pden[l++] = den_r[k];
1228 for (k = 0; k < len; ++k)
1229 if (den_p[k] == 0)
1230 break;
1232 dpoly n(no_param, num_s[0]);
1233 dpoly D(no_param, den_s[k], 1);
1234 for ( ; ++k < len; )
1235 if (den_p[k] == 0) {
1236 dpoly fact(no_param, den_s[k], 1);
1237 D *= fact;
1240 dpoly_r * r = 0;
1241 // if no_param + only_param == len then all powers
1242 // below will be all zero
1243 if (no_param + only_param == len) {
1244 if (E_num(0, dim) != 0)
1245 r = new dpoly_r(n, len);
1246 else {
1247 mpq_set_si(tcount, 0, 1);
1248 one = 1;
1249 n.div(D, tcount, one);
1251 if (value_notzero_p(mpq_numref(tcount))) {
1252 evalue f;
1253 value_init(f.d);
1254 value_init(f.x.n);
1255 value_assign(f.x.n, mpq_numref(tcount));
1256 value_assign(f.d, mpq_denref(tcount));
1257 emul(&f, factor);
1258 reduce(factor, num_p, pden, options);
1259 free_evalue_refs(&f);
1261 return;
1263 } else {
1264 for (k = 0; k < len; ++k) {
1265 if (den_s[k] == 0 || den_p[k] == 0)
1266 continue;
1268 dpoly pd(no_param-1, den_s[k], 1);
1270 int l;
1271 for (l = 0; l < k; ++l)
1272 if (den_r[l] == den_r[k])
1273 break;
1275 if (r == 0)
1276 r = new dpoly_r(n, pd, l, len);
1277 else {
1278 dpoly_r *nr = new dpoly_r(r, pd, l, len);
1279 delete r;
1280 r = nr;
1284 dpoly_r *rc = r->div(D);
1285 delete r;
1286 r = rc;
1287 if (E_num(0, dim) == 0) {
1288 int common = pden.NumRows();
1289 dpoly_r_term_list& final = r->c[r->len-1];
1290 int rows;
1291 evalue t;
1292 evalue f;
1293 value_init(f.d);
1294 value_init(f.x.n);
1295 zz2value(r->denom, f.d);
1296 dpoly_r_term_list::iterator j;
1297 for (j = final.begin(); j != final.end(); ++j) {
1298 if ((*j)->coeff == 0)
1299 continue;
1300 rows = common;
1301 for (int k = 0; k < r->dim; ++k) {
1302 int n = (*j)->powers[k];
1303 if (n == 0)
1304 continue;
1305 pden.SetDims(rows+n, pden.NumCols());
1306 for (int l = 0; l < n; ++l)
1307 pden[rows+l] = den_r[k];
1308 rows += n;
1310 value_init(t.d);
1311 evalue_copy(&t, factor);
1312 zz2value((*j)->coeff, f.x.n);
1313 emul(&f, &t);
1314 reduce(&t, num_p, pden, options);
1315 free_evalue_refs(&t);
1317 free_evalue_refs(&f);
1318 } else {
1319 ie_cum cum(factor, E_num(0, dim), r);
1320 cum.cumulate(options);
1322 int common = pden.NumRows();
1323 int rows;
1324 for (int j = 0; j < cum.terms.size(); ++j) {
1325 rows = common;
1326 pden.SetDims(rows, pden.NumCols());
1327 for (int k = 0; k < r->dim; ++k) {
1328 int n = cum.terms[j]->powers[k];
1329 if (n == 0)
1330 continue;
1331 pden.SetDims(rows+n, pden.NumCols());
1332 for (int l = 0; l < n; ++l)
1333 pden[rows+l] = den_r[k];
1334 rows += n;
1336 reduce(cum.terms[j]->E, num_p, pden, options);
1337 free_evalue_refs(cum.terms[j]->E);
1338 delete cum.terms[j]->E;
1339 delete cum.terms[j];
1342 delete r;
1346 static int type_offset(enode *p)
1348 return p->type == fractional ? 1 :
1349 p->type == flooring ? 1 : 0;
1352 static int edegree(evalue *e)
1354 int d = 0;
1355 enode *p;
1357 if (value_notzero_p(e->d))
1358 return 0;
1360 p = e->x.p;
1361 int i = type_offset(p);
1362 if (p->size-i-1 > d)
1363 d = p->size - i - 1;
1364 for (; i < p->size; i++) {
1365 int d2 = edegree(&p->arr[i]);
1366 if (d2 > d)
1367 d = d2;
1369 return d;
1372 void ienumerator::handle(const signed_cone& sc, barvinok_options *options)
1374 assert(sc.det == 1);
1375 assert(!sc.closed);
1376 assert(sc.rays.NumRows() == dim);
1378 lattice_point(V, sc.rays, vertex[0], E_vertex, options);
1380 den = sc.rays;
1382 evalue one;
1383 value_init(one.d);
1384 evalue_set_si(&one, sc.sign, 1);
1385 reduce(&one, vertex, den, options);
1386 free_evalue_refs(&one);
1388 for (int i = 0; i < dim; ++i)
1389 if (E_vertex[i]) {
1390 free_evalue_refs(E_vertex[i]);
1391 delete E_vertex[i];
1395 struct bfenumerator : public vertex_decomposer, public bf_base,
1396 public ienumerator_base {
1397 evalue *factor;
1399 bfenumerator(Polyhedron *P, unsigned dim, unsigned nbV) :
1400 vertex_decomposer(P, nbV, *this),
1401 bf_base(dim), ienumerator_base(dim, this) {
1402 lower = 0;
1403 factor = NULL;
1406 ~bfenumerator() {
1409 virtual void handle(const signed_cone& sc, barvinok_options *options);
1410 virtual void base(mat_ZZ& factors, bfc_vec& v);
1412 bfc_term_base* new_bf_term(int len) {
1413 bfe_term* t = new bfe_term(len);
1414 return t;
1417 virtual void set_factor(bfc_term_base *t, int k, int change) {
1418 bfe_term* bfet = static_cast<bfe_term *>(t);
1419 factor = bfet->factors[k];
1420 assert(factor != NULL);
1421 bfet->factors[k] = NULL;
1422 if (change)
1423 emul(&mone, factor);
1426 virtual void set_factor(bfc_term_base *t, int k, mpq_t &q, int change) {
1427 bfe_term* bfet = static_cast<bfe_term *>(t);
1428 factor = bfet->factors[k];
1429 assert(factor != NULL);
1430 bfet->factors[k] = NULL;
1432 evalue f;
1433 value_init(f.d);
1434 value_init(f.x.n);
1435 if (change)
1436 value_oppose(f.x.n, mpq_numref(q));
1437 else
1438 value_assign(f.x.n, mpq_numref(q));
1439 value_assign(f.d, mpq_denref(q));
1440 emul(&f, factor);
1441 free_evalue_refs(&f);
1444 virtual void set_factor(bfc_term_base *t, int k, const QQ& c, int change) {
1445 bfe_term* bfet = static_cast<bfe_term *>(t);
1447 factor = new evalue;
1449 evalue f;
1450 value_init(f.d);
1451 value_init(f.x.n);
1452 zz2value(c.n, f.x.n);
1453 if (change)
1454 value_oppose(f.x.n, f.x.n);
1455 zz2value(c.d, f.d);
1457 value_init(factor->d);
1458 evalue_copy(factor, bfet->factors[k]);
1459 emul(&f, factor);
1460 free_evalue_refs(&f);
1463 void set_factor(evalue *f, int change) {
1464 if (change)
1465 emul(&mone, f);
1466 factor = f;
1469 virtual void insert_term(bfc_term_base *t, int i) {
1470 bfe_term* bfet = static_cast<bfe_term *>(t);
1471 int len = t->terms.NumRows()-1; // already increased by one
1473 bfet->factors.resize(len+1);
1474 for (int j = len; j > i; --j) {
1475 bfet->factors[j] = bfet->factors[j-1];
1476 t->terms[j] = t->terms[j-1];
1478 bfet->factors[i] = factor;
1479 factor = NULL;
1482 virtual void update_term(bfc_term_base *t, int i) {
1483 bfe_term* bfet = static_cast<bfe_term *>(t);
1485 eadd(factor, bfet->factors[i]);
1486 free_evalue_refs(factor);
1487 delete factor;
1490 virtual bool constant_vertex(int dim) { return E_num(0, dim) == 0; }
1492 virtual void cum(bf_reducer *bfr, bfc_term_base *t, int k, dpoly_r *r,
1493 barvinok_options *options);
1496 enumerator_base *enumerator_base::create(Polyhedron *P, unsigned dim, unsigned nbV,
1497 barvinok_options *options)
1499 enumerator_base *eb;
1501 if (options->incremental_specialization == BV_SPECIALIZATION_BF)
1502 eb = new bfenumerator(P, dim, nbV);
1503 else if (options->incremental_specialization == BV_SPECIALIZATION_DF)
1504 eb = new ienumerator(P, dim, nbV);
1505 else
1506 eb = new enumerator(P, dim, nbV);
1508 return eb;
1511 struct bfe_cum : public cumulator {
1512 bfenumerator *bfe;
1513 bfc_term_base *told;
1514 int k;
1515 bf_reducer *bfr;
1517 bfe_cum(evalue *factor, evalue *v, dpoly_r *r, bf_reducer *bfr,
1518 bfc_term_base *t, int k, bfenumerator *e) :
1519 cumulator(factor, v, r), told(t), k(k),
1520 bfr(bfr), bfe(e) {
1523 virtual void add_term(const vector<int>& powers, evalue *f2);
1526 void bfe_cum::add_term(const vector<int>& powers, evalue *f2)
1528 bfr->update_powers(powers);
1530 bfc_term_base * t = bfe->find_bfc_term(bfr->vn, bfr->npowers, bfr->nnf);
1531 bfe->set_factor(f2, bfr->l_changes % 2);
1532 bfe->add_term(t, told->terms[k], bfr->l_extra_num);
1535 void bfenumerator::cum(bf_reducer *bfr, bfc_term_base *t, int k,
1536 dpoly_r *r, barvinok_options *options)
1538 bfe_term* bfet = static_cast<bfe_term *>(t);
1539 bfe_cum cum(bfet->factors[k], E_num(0, bfr->d), r, bfr, t, k, this);
1540 cum.cumulate(options);
1543 void bfenumerator::base(mat_ZZ& factors, bfc_vec& v)
1545 for (int i = 0; i < v.size(); ++i) {
1546 assert(v[i]->terms.NumRows() == 1);
1547 evalue *factor = static_cast<bfe_term *>(v[i])->factors[0];
1548 eadd(factor, vE[vert]);
1549 delete v[i];
1553 void bfenumerator::handle(const signed_cone& sc, barvinok_options *options)
1555 assert(sc.det == 1);
1556 assert(!sc.closed);
1557 assert(sc.rays.NumRows() == enumerator_base::dim);
1559 bfe_term* t = new bfe_term(enumerator_base::dim);
1560 vector< bfc_term_base * > v;
1561 v.push_back(t);
1563 t->factors.resize(1);
1565 t->terms.SetDims(1, enumerator_base::dim);
1566 lattice_point(V, sc.rays, t->terms[0], E_vertex, options);
1568 // the elements of factors are always lexpositive
1569 mat_ZZ factors;
1570 int s = setup_factors(sc.rays, factors, t, sc.sign);
1572 t->factors[0] = new evalue;
1573 value_init(t->factors[0]->d);
1574 evalue_set_si(t->factors[0], s, 1);
1575 reduce(factors, v, options);
1577 for (int i = 0; i < enumerator_base::dim; ++i)
1578 if (E_vertex[i]) {
1579 free_evalue_refs(E_vertex[i]);
1580 delete E_vertex[i];
1584 static inline Param_Polyhedron *Polyhedron2Param_MR(Polyhedron *Din,
1585 Polyhedron *Cin, int WS)
1587 if (WS & POL_NO_DUAL)
1588 WS = 0;
1589 return Polyhedron2Param_Domain(Din, Cin, WS);
1592 static evalue* barvinok_enumerate_ev_f(Polyhedron *P, Polyhedron* C,
1593 barvinok_options *options);
1595 /* Destroys C */
1596 static evalue* barvinok_enumerate_cst(Polyhedron *P, Polyhedron* C,
1597 struct barvinok_options *options)
1599 evalue *eres;
1601 ALLOC(evalue, eres);
1602 value_init(eres->d);
1603 value_set_si(eres->d, 0);
1604 eres->x.p = new_enode(partition, 2, C->Dimension);
1605 EVALUE_SET_DOMAIN(eres->x.p->arr[0],
1606 DomainConstraintSimplify(C, options->MaxRays));
1607 value_set_si(eres->x.p->arr[1].d, 1);
1608 value_init(eres->x.p->arr[1].x.n);
1609 if (emptyQ2(P))
1610 value_set_si(eres->x.p->arr[1].x.n, 0);
1611 else
1612 barvinok_count_with_options(P, &eres->x.p->arr[1].x.n, options);
1614 return eres;
1617 evalue* barvinok_enumerate_with_options(Polyhedron *P, Polyhedron* C,
1618 struct barvinok_options *options)
1620 //P = unfringe(P, MaxRays);
1621 Polyhedron *next, *Cnext;
1622 Polyhedron *Corig = C;
1623 Polyhedron *Porig = P;
1624 Polyhedron *CEq = NULL, *rVD, *CA;
1625 int r = 0;
1626 unsigned nparam = C->Dimension;
1627 evalue *eres;
1628 Matrix *CP = NULL;
1630 if (P->next)
1631 fprintf(stderr,
1632 "barvinok_enumerate: input is a union; only first polyhedron is enumerated\n");
1634 if (C->next)
1635 fprintf(stderr,
1636 "barvinok_enumerate: context is a union; only first polyhedron is considered\n");
1638 evalue factor;
1639 value_init(factor.d);
1640 evalue_set_si(&factor, 1, 1);
1642 Cnext = C->next;
1643 C->next = NULL;
1644 CA = align_context(C, P->Dimension, options->MaxRays);
1645 next = P->next;
1646 P->next = NULL;
1647 P = DomainIntersection(P, CA, options->MaxRays);
1648 Porig->next = next;
1649 Polyhedron_Free(CA);
1651 /* for now */
1652 POL_ENSURE_FACETS(P);
1653 POL_ENSURE_VERTICES(P);
1654 POL_ENSURE_FACETS(C);
1655 POL_ENSURE_VERTICES(C);
1657 if (C->Dimension == 0 || emptyQ(P)) {
1658 constant:
1659 eres = barvinok_enumerate_cst(P, CEq ? CEq : Polyhedron_Copy(C), options);
1660 out:
1661 if (CP) {
1662 evalue_backsubstitute(eres, CP, options->MaxRays);
1663 Matrix_Free(CP);
1666 emul(&factor, eres);
1667 if (options->approximation_method == BV_APPROX_DROP) {
1668 if (options->polynomial_approximation == BV_APPROX_SIGN_UPPER)
1669 evalue_frac2polynomial(eres, 1, options->MaxRays);
1670 if (options->polynomial_approximation == BV_APPROX_SIGN_LOWER)
1671 evalue_frac2polynomial(eres, -1, options->MaxRays);
1672 if (options->polynomial_approximation == BV_APPROX_SIGN_APPROX)
1673 evalue_frac2polynomial(eres, 0, options->MaxRays);
1675 reduce_evalue(eres);
1676 free_evalue_refs(&factor);
1677 Domain_Free(P);
1678 if (C != Corig)
1679 Polyhedron_Free(C);
1681 Corig->next = Cnext;
1682 return eres;
1684 if (Polyhedron_is_unbounded(P, nparam, options->MaxRays))
1685 goto constant;
1687 if (P->NbEq != 0) {
1688 Matrix *f;
1689 P = remove_equalities_p(P, P->Dimension-nparam, &f);
1690 mask(f, &factor, options);
1691 Matrix_Free(f);
1693 if (P->Dimension == nparam) {
1694 CEq = P;
1695 P = Universe_Polyhedron(0);
1696 goto constant;
1698 if (P->NbEq != 0) {
1699 Polyhedron *Q = P;
1700 Polyhedron *D = C;
1701 remove_all_equalities(&P, &C, &CP, NULL, nparam, options->MaxRays);
1702 if (P != Q && Q != Porig)
1703 Polyhedron_Free(Q);
1704 if (C != D && D != Corig)
1705 Polyhedron_Free(D);
1707 if (CP) {
1708 nparam = C->Dimension;
1709 if (!nparam)
1710 goto constant;
1713 Polyhedron *T = Polyhedron_Factor(P, nparam, NULL, options->MaxRays);
1714 if (T || (P->Dimension == nparam+1)) {
1715 Polyhedron *Q;
1716 Polyhedron *C2;
1717 for (Q = T ? T : P; Q; Q = Q->next) {
1718 Polyhedron *next = Q->next;
1719 Q->next = NULL;
1721 Polyhedron *QC = Q;
1722 if (Q->Dimension != C->Dimension)
1723 QC = Polyhedron_Project(Q, nparam);
1725 C2 = C;
1726 C = DomainIntersection(C, QC, options->MaxRays);
1727 if (C2 != Corig)
1728 Polyhedron_Free(C2);
1729 if (QC != Q)
1730 Polyhedron_Free(QC);
1732 Q->next = next;
1735 if (T) {
1736 Polyhedron_Free(P);
1737 P = T;
1738 if (T->Dimension == C->Dimension) {
1739 P = T->next;
1740 T->next = NULL;
1741 Polyhedron_Free(T);
1745 next = P->next;
1746 P->next = NULL;
1747 eres = barvinok_enumerate_ev_f(P, C, options);
1748 P->next = next;
1750 if (P->next) {
1751 Polyhedron *Q;
1752 evalue *f;
1754 for (Q = P->next; Q; Q = Q->next) {
1755 Polyhedron *next = Q->next;
1756 Q->next = NULL;
1758 f = barvinok_enumerate_ev_f(Q, C, options);
1759 emul(f, eres);
1760 free_evalue_refs(f);
1761 free(f);
1763 Q->next = next;
1767 goto out;
1770 evalue* barvinok_enumerate_ev(Polyhedron *P, Polyhedron* C, unsigned MaxRays)
1772 evalue *E;
1773 barvinok_options *options = barvinok_options_new_with_defaults();
1774 options->MaxRays = MaxRays;
1775 E = barvinok_enumerate_with_options(P, C, options);
1776 barvinok_options_free(options);
1777 return E;
1780 evalue *Param_Polyhedron_Enumerate(Param_Polyhedron *PP, Polyhedron *P,
1781 Polyhedron *C,
1782 struct barvinok_options *options)
1784 evalue *eres;
1785 Param_Domain *D;
1786 unsigned nparam = C->Dimension;
1787 unsigned dim = P->Dimension - nparam;
1789 ALLOC(evalue, eres);
1790 value_init(eres->d);
1791 value_set_si(eres->d, 0);
1793 int nd;
1794 for (nd = 0, D=PP->D; D; ++nd, D=D->next);
1795 struct section { Polyhedron *D; evalue E; };
1796 section *s = new section[nd];
1798 enumerator_base *et = NULL;
1799 try_again:
1800 if (et)
1801 delete et;
1803 et = enumerator_base::create(P, dim, PP->nbV, options);
1805 Polyhedron *TC = true_context(P, C, options->MaxRays);
1806 FORALL_REDUCED_DOMAIN(PP, TC, nd, options, i, D, rVD)
1807 Param_Vertices *V;
1809 value_init(s[i].E.d);
1810 evalue_set_si(&s[i].E, 0, 1);
1811 s[i].D = rVD;
1813 FORALL_PVertex_in_ParamPolyhedron(V,D,PP) // _i is internal counter
1814 if (!et->vE[_i])
1815 try {
1816 et->decompose_at(V, _i, options);
1817 } catch (OrthogonalException &e) {
1818 FORALL_REDUCED_DOMAIN_RESET;
1819 for (; i >= 0; --i) {
1820 free_evalue_refs(&s[i].E);
1821 Domain_Free(s[i].D);
1823 goto try_again;
1825 eadd(et->vE[_i] , &s[i].E);
1826 END_FORALL_PVertex_in_ParamPolyhedron;
1827 evalue_range_reduction_in_domain(&s[i].E, rVD);
1828 END_FORALL_REDUCED_DOMAIN
1829 Polyhedron_Free(TC);
1831 delete et;
1832 if (nd == 0)
1833 evalue_set_si(eres, 0, 1);
1834 else {
1835 eres->x.p = new_enode(partition, 2*nd, C->Dimension);
1836 for (int j = 0; j < nd; ++j) {
1837 EVALUE_SET_DOMAIN(eres->x.p->arr[2*j], s[j].D);
1838 value_clear(eres->x.p->arr[2*j+1].d);
1839 eres->x.p->arr[2*j+1] = s[j].E;
1842 delete [] s;
1844 return eres;
1847 static evalue* barvinok_enumerate_ev_f(Polyhedron *P, Polyhedron* C,
1848 barvinok_options *options)
1850 unsigned nparam = C->Dimension;
1851 bool do_scale = options->approximation_method == BV_APPROX_SCALE;
1853 if (options->approximation_method == BV_APPROX_VOLUME)
1854 return Param_Polyhedron_Volume(P, C, options);
1856 if (P->Dimension - nparam == 1 && !do_scale)
1857 return ParamLine_Length(P, C, options);
1859 Param_Polyhedron *PP = NULL;
1860 evalue *eres;
1862 if (do_scale) {
1863 eres = scale_bound(P, C, options);
1864 if (eres)
1865 return eres;
1868 PP = Polyhedron2Param_MR(P, C, options->MaxRays);
1870 if (do_scale)
1871 eres = scale(PP, P, C, options);
1872 else
1873 eres = Param_Polyhedron_Enumerate(PP, P, C, options);
1875 if (PP)
1876 Param_Polyhedron_Free(PP);
1878 return eres;
1881 Enumeration* barvinok_enumerate(Polyhedron *P, Polyhedron* C, unsigned MaxRays)
1883 evalue *EP = barvinok_enumerate_ev(P, C, MaxRays);
1885 return partition2enumeration(EP);
1888 static void SwapColumns(Value **V, int n, int i, int j)
1890 for (int r = 0; r < n; ++r)
1891 value_swap(V[r][i], V[r][j]);
1894 static void SwapColumns(Polyhedron *P, int i, int j)
1896 SwapColumns(P->Constraint, P->NbConstraints, i, j);
1897 SwapColumns(P->Ray, P->NbRays, i, j);
1900 /* Construct a constraint c from constraints l and u such that if
1901 * if constraint c holds then for each value of the other variables
1902 * there is at most one value of variable pos (position pos+1 in the constraints).
1904 * Given a lower and an upper bound
1905 * n_l v_i + <c_l,x> + c_l >= 0
1906 * -n_u v_i + <c_u,x> + c_u >= 0
1907 * the constructed constraint is
1909 * -(n_l<c_u,x> + n_u<c_l,x>) + (-n_l c_u - n_u c_l + n_l n_u - 1)
1911 * which is then simplified to remove the content of the non-constant coefficients
1913 * len is the total length of the constraints.
1914 * v is a temporary variable that can be used by this procedure
1916 static void negative_test_constraint(Value *l, Value *u, Value *c, int pos,
1917 int len, Value *v)
1919 value_oppose(*v, u[pos+1]);
1920 Vector_Combine(l+1, u+1, c+1, *v, l[pos+1], len-1);
1921 value_multiply(*v, *v, l[pos+1]);
1922 value_subtract(c[len-1], c[len-1], *v);
1923 value_set_si(*v, -1);
1924 Vector_Scale(c+1, c+1, *v, len-1);
1925 value_decrement(c[len-1], c[len-1]);
1926 ConstraintSimplify(c, c, len, v);
1929 static bool parallel_constraints(Value *l, Value *u, Value *c, int pos,
1930 int len)
1932 bool parallel;
1933 Value g1;
1934 Value g2;
1935 value_init(g1);
1936 value_init(g2);
1938 Vector_Gcd(&l[1+pos], len, &g1);
1939 Vector_Gcd(&u[1+pos], len, &g2);
1940 Vector_Combine(l+1+pos, u+1+pos, c+1, g2, g1, len);
1941 parallel = First_Non_Zero(c+1, len) == -1;
1943 value_clear(g1);
1944 value_clear(g2);
1946 return parallel;
1949 static void negative_test_constraint7(Value *l, Value *u, Value *c, int pos,
1950 int exist, int len, Value *v)
1952 Value g;
1953 value_init(g);
1955 Vector_Gcd(&u[1+pos], exist, v);
1956 Vector_Gcd(&l[1+pos], exist, &g);
1957 Vector_Combine(l+1, u+1, c+1, *v, g, len-1);
1958 value_multiply(*v, *v, g);
1959 value_subtract(c[len-1], c[len-1], *v);
1960 value_set_si(*v, -1);
1961 Vector_Scale(c+1, c+1, *v, len-1);
1962 value_decrement(c[len-1], c[len-1]);
1963 ConstraintSimplify(c, c, len, v);
1965 value_clear(g);
1968 /* Turns a x + b >= 0 into a x + b <= -1
1970 * len is the total length of the constraint.
1971 * v is a temporary variable that can be used by this procedure
1973 static void oppose_constraint(Value *c, int len, Value *v)
1975 value_set_si(*v, -1);
1976 Vector_Scale(c+1, c+1, *v, len-1);
1977 value_decrement(c[len-1], c[len-1]);
1980 /* Split polyhedron P into two polyhedra *pos and *neg, where
1981 * existential variable i has at most one solution for each
1982 * value of the other variables in *neg.
1984 * The splitting is performed using constraints l and u.
1986 * nvar: number of set variables
1987 * row: temporary vector that can be used by this procedure
1988 * f: temporary value that can be used by this procedure
1990 static bool SplitOnConstraint(Polyhedron *P, int i, int l, int u,
1991 int nvar, int MaxRays, Vector *row, Value& f,
1992 Polyhedron **pos, Polyhedron **neg)
1994 negative_test_constraint(P->Constraint[l], P->Constraint[u],
1995 row->p, nvar+i, P->Dimension+2, &f);
1996 *neg = AddConstraints(row->p, 1, P, MaxRays);
1998 /* We found an independent, but useless constraint
1999 * Maybe we should detect this earlier and not
2000 * mark the variable as INDEPENDENT
2002 if (emptyQ((*neg))) {
2003 Polyhedron_Free(*neg);
2004 return false;
2007 oppose_constraint(row->p, P->Dimension+2, &f);
2008 *pos = AddConstraints(row->p, 1, P, MaxRays);
2010 if (emptyQ((*pos))) {
2011 Polyhedron_Free(*neg);
2012 Polyhedron_Free(*pos);
2013 return false;
2016 return true;
2020 * unimodularly transform P such that constraint r is transformed
2021 * into a constraint that involves only a single (the first)
2022 * existential variable
2025 static Polyhedron *rotate_along(Polyhedron *P, int r, int nvar, int exist,
2026 unsigned MaxRays)
2028 Value g;
2029 value_init(g);
2031 Vector *row = Vector_Alloc(exist);
2032 Vector_Copy(P->Constraint[r]+1+nvar, row->p, exist);
2033 Vector_Gcd(row->p, exist, &g);
2034 if (value_notone_p(g))
2035 Vector_AntiScale(row->p, row->p, g, exist);
2036 value_clear(g);
2038 Matrix *M = unimodular_complete(row);
2039 Matrix *M2 = Matrix_Alloc(P->Dimension+1, P->Dimension+1);
2040 for (r = 0; r < nvar; ++r)
2041 value_set_si(M2->p[r][r], 1);
2042 for ( ; r < nvar+exist; ++r)
2043 Vector_Copy(M->p[r-nvar], M2->p[r]+nvar, exist);
2044 for ( ; r < P->Dimension+1; ++r)
2045 value_set_si(M2->p[r][r], 1);
2046 Polyhedron *T = Polyhedron_Image(P, M2, MaxRays);
2048 Matrix_Free(M2);
2049 Matrix_Free(M);
2050 Vector_Free(row);
2052 return T;
2055 /* Split polyhedron P into two polyhedra *pos and *neg, where
2056 * existential variable i has at most one solution for each
2057 * value of the other variables in *neg.
2059 * If independent is set, then the two constraints on which the
2060 * split will be performed need to be independent of the other
2061 * existential variables.
2063 * Return true if an appropriate split could be performed.
2065 * nvar: number of set variables
2066 * exist: number of existential variables
2067 * row: temporary vector that can be used by this procedure
2068 * f: temporary value that can be used by this procedure
2070 static bool SplitOnVar(Polyhedron *P, int i,
2071 int nvar, int exist, int MaxRays,
2072 Vector *row, Value& f, bool independent,
2073 Polyhedron **pos, Polyhedron **neg)
2075 int j;
2077 for (int l = P->NbEq; l < P->NbConstraints; ++l) {
2078 if (value_negz_p(P->Constraint[l][nvar+i+1]))
2079 continue;
2081 if (independent) {
2082 for (j = 0; j < exist; ++j)
2083 if (j != i && value_notzero_p(P->Constraint[l][nvar+j+1]))
2084 break;
2085 if (j < exist)
2086 continue;
2089 for (int u = P->NbEq; u < P->NbConstraints; ++u) {
2090 if (value_posz_p(P->Constraint[u][nvar+i+1]))
2091 continue;
2093 if (independent) {
2094 for (j = 0; j < exist; ++j)
2095 if (j != i && value_notzero_p(P->Constraint[u][nvar+j+1]))
2096 break;
2097 if (j < exist)
2098 continue;
2101 if (SplitOnConstraint(P, i, l, u, nvar, MaxRays, row, f, pos, neg)) {
2102 if (independent) {
2103 if (i != 0)
2104 SwapColumns(*neg, nvar+1, nvar+1+i);
2106 return true;
2111 return false;
2114 static bool double_bound_pair(Polyhedron *P, int nvar, int exist,
2115 int i, int l1, int l2,
2116 Polyhedron **pos, Polyhedron **neg)
2118 Value f;
2119 value_init(f);
2120 Vector *row = Vector_Alloc(P->Dimension+2);
2121 value_set_si(row->p[0], 1);
2122 value_oppose(f, P->Constraint[l1][nvar+i+1]);
2123 Vector_Combine(P->Constraint[l1]+1, P->Constraint[l2]+1,
2124 row->p+1,
2125 P->Constraint[l2][nvar+i+1], f,
2126 P->Dimension+1);
2127 ConstraintSimplify(row->p, row->p, P->Dimension+2, &f);
2128 *pos = AddConstraints(row->p, 1, P, 0);
2129 value_set_si(f, -1);
2130 Vector_Scale(row->p+1, row->p+1, f, P->Dimension+1);
2131 value_decrement(row->p[P->Dimension+1], row->p[P->Dimension+1]);
2132 *neg = AddConstraints(row->p, 1, P, 0);
2133 Vector_Free(row);
2134 value_clear(f);
2136 return !emptyQ((*pos)) && !emptyQ((*neg));
2139 static bool double_bound(Polyhedron *P, int nvar, int exist,
2140 Polyhedron **pos, Polyhedron **neg)
2142 for (int i = 0; i < exist; ++i) {
2143 int l1, l2;
2144 for (l1 = P->NbEq; l1 < P->NbConstraints; ++l1) {
2145 if (value_negz_p(P->Constraint[l1][nvar+i+1]))
2146 continue;
2147 for (l2 = l1 + 1; l2 < P->NbConstraints; ++l2) {
2148 if (value_negz_p(P->Constraint[l2][nvar+i+1]))
2149 continue;
2150 if (double_bound_pair(P, nvar, exist, i, l1, l2, pos, neg))
2151 return true;
2154 for (l1 = P->NbEq; l1 < P->NbConstraints; ++l1) {
2155 if (value_posz_p(P->Constraint[l1][nvar+i+1]))
2156 continue;
2157 if (l1 < P->NbConstraints)
2158 for (l2 = l1 + 1; l2 < P->NbConstraints; ++l2) {
2159 if (value_posz_p(P->Constraint[l2][nvar+i+1]))
2160 continue;
2161 if (double_bound_pair(P, nvar, exist, i, l1, l2, pos, neg))
2162 return true;
2165 return false;
2167 return false;
2170 enum constraint {
2171 ALL_POS = 1 << 0,
2172 ONE_NEG = 1 << 1,
2173 INDEPENDENT = 1 << 2,
2174 ROT_NEG = 1 << 3
2177 static evalue* enumerate_or(Polyhedron *D,
2178 unsigned exist, unsigned nparam, barvinok_options *options)
2180 #ifdef DEBUG_ER
2181 fprintf(stderr, "\nER: Or\n");
2182 #endif /* DEBUG_ER */
2184 Polyhedron *N = D->next;
2185 D->next = 0;
2186 evalue *EP =
2187 barvinok_enumerate_e_with_options(D, exist, nparam, options);
2188 Polyhedron_Free(D);
2190 for (D = N; D; D = N) {
2191 N = D->next;
2192 D->next = 0;
2194 evalue *EN =
2195 barvinok_enumerate_e_with_options(D, exist, nparam, options);
2197 eor(EN, EP);
2198 free_evalue_refs(EN);
2199 free(EN);
2200 Polyhedron_Free(D);
2203 reduce_evalue(EP);
2205 return EP;
2208 static evalue* enumerate_sum(Polyhedron *P,
2209 unsigned exist, unsigned nparam, barvinok_options *options)
2211 int nvar = P->Dimension - exist - nparam;
2212 int toswap = nvar < exist ? nvar : exist;
2213 for (int i = 0; i < toswap; ++i)
2214 SwapColumns(P, 1 + i, nvar+exist - i);
2215 nparam += nvar;
2217 #ifdef DEBUG_ER
2218 fprintf(stderr, "\nER: Sum\n");
2219 #endif /* DEBUG_ER */
2221 evalue *EP = barvinok_enumerate_e_with_options(P, exist, nparam, options);
2223 evalue_split_domains_into_orthants(EP, options->MaxRays);
2224 reduce_evalue(EP);
2225 evalue_range_reduction(EP);
2227 evalue_frac2floor2(EP, 1);
2229 evalue *sum = esum(EP, nvar);
2231 free_evalue_refs(EP);
2232 free(EP);
2233 EP = sum;
2235 evalue_range_reduction(EP);
2237 return EP;
2240 static evalue* split_sure(Polyhedron *P, Polyhedron *S,
2241 unsigned exist, unsigned nparam, barvinok_options *options)
2243 int nvar = P->Dimension - exist - nparam;
2245 Matrix *M = Matrix_Alloc(exist, S->Dimension+2);
2246 for (int i = 0; i < exist; ++i)
2247 value_set_si(M->p[i][nvar+i+1], 1);
2248 Polyhedron *O = S;
2249 S = DomainAddRays(S, M, options->MaxRays);
2250 Polyhedron_Free(O);
2251 Polyhedron *F = DomainAddRays(P, M, options->MaxRays);
2252 Polyhedron *D = DomainDifference(F, S, options->MaxRays);
2253 O = D;
2254 D = Disjoint_Domain(D, 0, options->MaxRays);
2255 Polyhedron_Free(F);
2256 Domain_Free(O);
2257 Matrix_Free(M);
2259 M = Matrix_Alloc(P->Dimension+1-exist, P->Dimension+1);
2260 for (int j = 0; j < nvar; ++j)
2261 value_set_si(M->p[j][j], 1);
2262 for (int j = 0; j < nparam+1; ++j)
2263 value_set_si(M->p[nvar+j][nvar+exist+j], 1);
2264 Polyhedron *T = Polyhedron_Image(S, M, options->MaxRays);
2265 evalue *EP = barvinok_enumerate_e_with_options(T, 0, nparam, options);
2266 Polyhedron_Free(S);
2267 Polyhedron_Free(T);
2268 Matrix_Free(M);
2270 for (Polyhedron *Q = D; Q; Q = Q->next) {
2271 Polyhedron *N = Q->next;
2272 Q->next = 0;
2273 T = DomainIntersection(P, Q, options->MaxRays);
2274 evalue *E = barvinok_enumerate_e_with_options(T, exist, nparam, options);
2275 eadd(E, EP);
2276 free_evalue_refs(E);
2277 free(E);
2278 Polyhedron_Free(T);
2279 Q->next = N;
2281 Domain_Free(D);
2282 return EP;
2285 static evalue* enumerate_sure(Polyhedron *P,
2286 unsigned exist, unsigned nparam, barvinok_options *options)
2288 int i;
2289 Polyhedron *S = P;
2290 int nvar = P->Dimension - exist - nparam;
2291 Value lcm;
2292 Value f;
2293 value_init(lcm);
2294 value_init(f);
2296 for (i = 0; i < exist; ++i) {
2297 Matrix *M = Matrix_Alloc(S->NbConstraints, S->Dimension+2);
2298 int c = 0;
2299 value_set_si(lcm, 1);
2300 for (int j = 0; j < S->NbConstraints; ++j) {
2301 if (value_negz_p(S->Constraint[j][1+nvar+i]))
2302 continue;
2303 if (value_one_p(S->Constraint[j][1+nvar+i]))
2304 continue;
2305 value_lcm(lcm, S->Constraint[j][1+nvar+i], &lcm);
2308 for (int j = 0; j < S->NbConstraints; ++j) {
2309 if (value_negz_p(S->Constraint[j][1+nvar+i]))
2310 continue;
2311 if (value_one_p(S->Constraint[j][1+nvar+i]))
2312 continue;
2313 value_division(f, lcm, S->Constraint[j][1+nvar+i]);
2314 Vector_Scale(S->Constraint[j], M->p[c], f, S->Dimension+2);
2315 value_subtract(M->p[c][S->Dimension+1],
2316 M->p[c][S->Dimension+1],
2317 lcm);
2318 value_increment(M->p[c][S->Dimension+1],
2319 M->p[c][S->Dimension+1]);
2320 ++c;
2322 Polyhedron *O = S;
2323 S = AddConstraints(M->p[0], c, S, options->MaxRays);
2324 if (O != P)
2325 Polyhedron_Free(O);
2326 Matrix_Free(M);
2327 if (emptyQ(S)) {
2328 Polyhedron_Free(S);
2329 value_clear(lcm);
2330 value_clear(f);
2331 return 0;
2334 value_clear(lcm);
2335 value_clear(f);
2337 #ifdef DEBUG_ER
2338 fprintf(stderr, "\nER: Sure\n");
2339 #endif /* DEBUG_ER */
2341 return split_sure(P, S, exist, nparam, options);
2344 static evalue* enumerate_sure2(Polyhedron *P,
2345 unsigned exist, unsigned nparam, barvinok_options *options)
2347 int nvar = P->Dimension - exist - nparam;
2348 int r;
2349 for (r = 0; r < P->NbRays; ++r)
2350 if (value_one_p(P->Ray[r][0]) &&
2351 value_one_p(P->Ray[r][P->Dimension+1]))
2352 break;
2354 if (r >= P->NbRays)
2355 return 0;
2357 Matrix *M = Matrix_Alloc(nvar + 1 + nparam, P->Dimension+2);
2358 for (int i = 0; i < nvar; ++i)
2359 value_set_si(M->p[i][1+i], 1);
2360 for (int i = 0; i < nparam; ++i)
2361 value_set_si(M->p[i+nvar][1+nvar+exist+i], 1);
2362 Vector_Copy(P->Ray[r]+1+nvar, M->p[nvar+nparam]+1+nvar, exist);
2363 value_set_si(M->p[nvar+nparam][0], 1);
2364 value_set_si(M->p[nvar+nparam][P->Dimension+1], 1);
2365 Polyhedron * F = Rays2Polyhedron(M, options->MaxRays);
2366 Matrix_Free(M);
2368 Polyhedron *I = DomainIntersection(F, P, options->MaxRays);
2369 Polyhedron_Free(F);
2371 #ifdef DEBUG_ER
2372 fprintf(stderr, "\nER: Sure2\n");
2373 #endif /* DEBUG_ER */
2375 return split_sure(P, I, exist, nparam, options);
2378 static evalue* enumerate_cyclic(Polyhedron *P,
2379 unsigned exist, unsigned nparam,
2380 evalue * EP, int r, int p, unsigned MaxRays)
2382 int nvar = P->Dimension - exist - nparam;
2384 /* If EP in its fractional maps only contains references
2385 * to the remainder parameter with appropriate coefficients
2386 * then we could in principle avoid adding existentially
2387 * quantified variables to the validity domains.
2388 * We'd have to replace the remainder by m { p/m }
2389 * and multiply with an appropriate factor that is one
2390 * only in the appropriate range.
2391 * This last multiplication can be avoided if EP
2392 * has a single validity domain with no (further)
2393 * constraints on the remainder parameter
2396 Matrix *CT = Matrix_Alloc(nparam+1, nparam+3);
2397 Matrix *M = Matrix_Alloc(1, 1+nparam+3);
2398 for (int j = 0; j < nparam; ++j)
2399 if (j != p)
2400 value_set_si(CT->p[j][j], 1);
2401 value_set_si(CT->p[p][nparam+1], 1);
2402 value_set_si(CT->p[nparam][nparam+2], 1);
2403 value_set_si(M->p[0][1+p], -1);
2404 value_absolute(M->p[0][1+nparam], P->Ray[0][1+nvar+exist+p]);
2405 value_set_si(M->p[0][1+nparam+1], 1);
2406 Polyhedron *CEq = Constraints2Polyhedron(M, 1);
2407 Matrix_Free(M);
2408 addeliminatedparams_enum(EP, CT, CEq, MaxRays, nparam);
2409 Polyhedron_Free(CEq);
2410 Matrix_Free(CT);
2412 return EP;
2415 static void enumerate_vd_add_ray(evalue *EP, Matrix *Rays, unsigned MaxRays)
2417 if (value_notzero_p(EP->d))
2418 return;
2420 assert(EP->x.p->type == partition);
2421 assert(EP->x.p->pos == EVALUE_DOMAIN(EP->x.p->arr[0])->Dimension);
2422 for (int i = 0; i < EP->x.p->size/2; ++i) {
2423 Polyhedron *D = EVALUE_DOMAIN(EP->x.p->arr[2*i]);
2424 Polyhedron *N = DomainAddRays(D, Rays, MaxRays);
2425 EVALUE_SET_DOMAIN(EP->x.p->arr[2*i], N);
2426 Domain_Free(D);
2430 static evalue* enumerate_line(Polyhedron *P,
2431 unsigned exist, unsigned nparam, barvinok_options *options)
2433 if (P->NbBid == 0)
2434 return 0;
2436 #ifdef DEBUG_ER
2437 fprintf(stderr, "\nER: Line\n");
2438 #endif /* DEBUG_ER */
2440 int nvar = P->Dimension - exist - nparam;
2441 int i, j;
2442 for (i = 0; i < nparam; ++i)
2443 if (value_notzero_p(P->Ray[0][1+nvar+exist+i]))
2444 break;
2445 assert(i < nparam);
2446 for (j = i+1; j < nparam; ++j)
2447 if (value_notzero_p(P->Ray[0][1+nvar+exist+i]))
2448 break;
2449 assert(j >= nparam); // for now
2451 Matrix *M = Matrix_Alloc(2, P->Dimension+2);
2452 value_set_si(M->p[0][0], 1);
2453 value_set_si(M->p[0][1+nvar+exist+i], 1);
2454 value_set_si(M->p[1][0], 1);
2455 value_set_si(M->p[1][1+nvar+exist+i], -1);
2456 value_absolute(M->p[1][1+P->Dimension], P->Ray[0][1+nvar+exist+i]);
2457 value_decrement(M->p[1][1+P->Dimension], M->p[1][1+P->Dimension]);
2458 Polyhedron *S = AddConstraints(M->p[0], 2, P, options->MaxRays);
2459 evalue *EP = barvinok_enumerate_e_with_options(S, exist, nparam, options);
2460 Polyhedron_Free(S);
2461 Matrix_Free(M);
2463 return enumerate_cyclic(P, exist, nparam, EP, 0, i, options->MaxRays);
2466 static int single_param_pos(Polyhedron*P, unsigned exist, unsigned nparam,
2467 int r)
2469 int nvar = P->Dimension - exist - nparam;
2470 if (First_Non_Zero(P->Ray[r]+1, nvar) != -1)
2471 return -1;
2472 int i = First_Non_Zero(P->Ray[r]+1+nvar+exist, nparam);
2473 if (i == -1)
2474 return -1;
2475 if (First_Non_Zero(P->Ray[r]+1+nvar+exist+1, nparam-i-1) != -1)
2476 return -1;
2477 return i;
2480 static evalue* enumerate_remove_ray(Polyhedron *P, int r,
2481 unsigned exist, unsigned nparam, barvinok_options *options)
2483 #ifdef DEBUG_ER
2484 fprintf(stderr, "\nER: RedundantRay\n");
2485 #endif /* DEBUG_ER */
2487 Value one;
2488 value_init(one);
2489 value_set_si(one, 1);
2490 int len = P->NbRays-1;
2491 Matrix *M = Matrix_Alloc(2 * len, P->Dimension+2);
2492 Vector_Copy(P->Ray[0], M->p[0], r * (P->Dimension+2));
2493 Vector_Copy(P->Ray[r+1], M->p[r], (len-r) * (P->Dimension+2));
2494 for (int j = 0; j < P->NbRays; ++j) {
2495 if (j == r)
2496 continue;
2497 Vector_Combine(P->Ray[j], P->Ray[r], M->p[len+j-(j>r)],
2498 one, P->Ray[j][P->Dimension+1], P->Dimension+2);
2501 P = Rays2Polyhedron(M, options->MaxRays);
2502 Matrix_Free(M);
2503 evalue *EP = barvinok_enumerate_e_with_options(P, exist, nparam, options);
2504 Polyhedron_Free(P);
2505 value_clear(one);
2507 return EP;
2510 static evalue* enumerate_redundant_ray(Polyhedron *P,
2511 unsigned exist, unsigned nparam, barvinok_options *options)
2513 assert(P->NbBid == 0);
2514 int nvar = P->Dimension - exist - nparam;
2515 Value m;
2516 value_init(m);
2518 for (int r = 0; r < P->NbRays; ++r) {
2519 if (value_notzero_p(P->Ray[r][P->Dimension+1]))
2520 continue;
2521 int i1 = single_param_pos(P, exist, nparam, r);
2522 if (i1 == -1)
2523 continue;
2524 for (int r2 = r+1; r2 < P->NbRays; ++r2) {
2525 if (value_notzero_p(P->Ray[r2][P->Dimension+1]))
2526 continue;
2527 int i2 = single_param_pos(P, exist, nparam, r2);
2528 if (i2 == -1)
2529 continue;
2530 if (i1 != i2)
2531 continue;
2533 value_division(m, P->Ray[r][1+nvar+exist+i1],
2534 P->Ray[r2][1+nvar+exist+i1]);
2535 value_multiply(m, m, P->Ray[r2][1+nvar+exist+i1]);
2536 /* r2 divides r => r redundant */
2537 if (value_eq(m, P->Ray[r][1+nvar+exist+i1])) {
2538 value_clear(m);
2539 return enumerate_remove_ray(P, r, exist, nparam, options);
2542 value_division(m, P->Ray[r2][1+nvar+exist+i1],
2543 P->Ray[r][1+nvar+exist+i1]);
2544 value_multiply(m, m, P->Ray[r][1+nvar+exist+i1]);
2545 /* r divides r2 => r2 redundant */
2546 if (value_eq(m, P->Ray[r2][1+nvar+exist+i1])) {
2547 value_clear(m);
2548 return enumerate_remove_ray(P, r2, exist, nparam, options);
2552 value_clear(m);
2553 return 0;
2556 static Polyhedron *upper_bound(Polyhedron *P,
2557 int pos, Value *max, Polyhedron **R)
2559 Value v;
2560 int r;
2561 value_init(v);
2563 *R = 0;
2564 Polyhedron *N;
2565 Polyhedron *B = 0;
2566 for (Polyhedron *Q = P; Q; Q = N) {
2567 N = Q->next;
2568 for (r = 0; r < P->NbRays; ++r) {
2569 if (value_zero_p(P->Ray[r][P->Dimension+1]) &&
2570 value_pos_p(P->Ray[r][1+pos]))
2571 break;
2573 if (r < P->NbRays) {
2574 Q->next = *R;
2575 *R = Q;
2576 continue;
2577 } else {
2578 Q->next = B;
2579 B = Q;
2581 for (r = 0; r < P->NbRays; ++r) {
2582 if (value_zero_p(P->Ray[r][P->Dimension+1]))
2583 continue;
2584 mpz_fdiv_q(v, P->Ray[r][1+pos], P->Ray[r][1+P->Dimension]);
2585 if ((!Q->next && r == 0) || value_gt(v, *max))
2586 value_assign(*max, v);
2589 value_clear(v);
2590 return B;
2593 static evalue* enumerate_ray(Polyhedron *P,
2594 unsigned exist, unsigned nparam, barvinok_options *options)
2596 assert(P->NbBid == 0);
2597 int nvar = P->Dimension - exist - nparam;
2599 int r;
2600 for (r = 0; r < P->NbRays; ++r)
2601 if (value_zero_p(P->Ray[r][P->Dimension+1]))
2602 break;
2603 if (r >= P->NbRays)
2604 return 0;
2606 int r2;
2607 for (r2 = r+1; r2 < P->NbRays; ++r2)
2608 if (value_zero_p(P->Ray[r2][P->Dimension+1]))
2609 break;
2610 if (r2 < P->NbRays) {
2611 if (nvar > 0)
2612 return enumerate_sum(P, exist, nparam, options);
2615 #ifdef DEBUG_ER
2616 fprintf(stderr, "\nER: Ray\n");
2617 #endif /* DEBUG_ER */
2619 Value m;
2620 Value one;
2621 value_init(m);
2622 value_init(one);
2623 value_set_si(one, 1);
2624 int i = single_param_pos(P, exist, nparam, r);
2625 assert(i != -1); // for now;
2627 Matrix *M = Matrix_Alloc(P->NbRays, P->Dimension+2);
2628 for (int j = 0; j < P->NbRays; ++j) {
2629 Vector_Combine(P->Ray[j], P->Ray[r], M->p[j],
2630 one, P->Ray[j][P->Dimension+1], P->Dimension+2);
2632 Polyhedron *S = Rays2Polyhedron(M, options->MaxRays);
2633 Matrix_Free(M);
2634 Polyhedron *D = DomainDifference(P, S, options->MaxRays);
2635 Polyhedron_Free(S);
2636 // Polyhedron_Print(stderr, P_VALUE_FMT, D);
2637 assert(value_pos_p(P->Ray[r][1+nvar+exist+i])); // for now
2638 Polyhedron *R;
2639 D = upper_bound(D, nvar+exist+i, &m, &R);
2640 assert(D);
2641 Domain_Free(D);
2643 M = Matrix_Alloc(2, P->Dimension+2);
2644 value_set_si(M->p[0][0], 1);
2645 value_set_si(M->p[1][0], 1);
2646 value_set_si(M->p[0][1+nvar+exist+i], -1);
2647 value_set_si(M->p[1][1+nvar+exist+i], 1);
2648 value_assign(M->p[0][1+P->Dimension], m);
2649 value_oppose(M->p[1][1+P->Dimension], m);
2650 value_addto(M->p[1][1+P->Dimension], M->p[1][1+P->Dimension],
2651 P->Ray[r][1+nvar+exist+i]);
2652 value_decrement(M->p[1][1+P->Dimension], M->p[1][1+P->Dimension]);
2653 // Matrix_Print(stderr, P_VALUE_FMT, M);
2654 D = AddConstraints(M->p[0], 2, P, options->MaxRays);
2655 // Polyhedron_Print(stderr, P_VALUE_FMT, D);
2656 value_subtract(M->p[0][1+P->Dimension], M->p[0][1+P->Dimension],
2657 P->Ray[r][1+nvar+exist+i]);
2658 // Matrix_Print(stderr, P_VALUE_FMT, M);
2659 S = AddConstraints(M->p[0], 1, P, options->MaxRays);
2660 // Polyhedron_Print(stderr, P_VALUE_FMT, S);
2661 Matrix_Free(M);
2663 evalue *EP = barvinok_enumerate_e_with_options(D, exist, nparam, options);
2664 Polyhedron_Free(D);
2665 value_clear(one);
2666 value_clear(m);
2668 if (value_notone_p(P->Ray[r][1+nvar+exist+i]))
2669 EP = enumerate_cyclic(P, exist, nparam, EP, r, i, options->MaxRays);
2670 else {
2671 M = Matrix_Alloc(1, nparam+2);
2672 value_set_si(M->p[0][0], 1);
2673 value_set_si(M->p[0][1+i], 1);
2674 enumerate_vd_add_ray(EP, M, options->MaxRays);
2675 Matrix_Free(M);
2678 if (!emptyQ(S)) {
2679 evalue *E = barvinok_enumerate_e_with_options(S, exist, nparam, options);
2680 eadd(E, EP);
2681 free_evalue_refs(E);
2682 free(E);
2684 Polyhedron_Free(S);
2686 if (R) {
2687 assert(nvar == 0);
2688 evalue *ER = enumerate_or(R, exist, nparam, options);
2689 eor(ER, EP);
2690 free_evalue_refs(ER);
2691 free(ER);
2694 return EP;
2697 static evalue* enumerate_vd(Polyhedron **PA,
2698 unsigned exist, unsigned nparam, barvinok_options *options)
2700 Polyhedron *P = *PA;
2701 int nvar = P->Dimension - exist - nparam;
2702 Param_Polyhedron *PP = NULL;
2703 Polyhedron *C = Universe_Polyhedron(nparam);
2704 Polyhedron *CEq;
2705 Matrix *CT;
2706 Polyhedron *PR = P;
2707 PP = Polyhedron2Param_Domain(PR,C, options->MaxRays);
2708 Polyhedron_Free(C);
2710 int nd;
2711 Param_Domain *D, *last;
2712 Value c;
2713 value_init(c);
2714 for (nd = 0, D=PP->D; D; D=D->next, ++nd)
2717 Polyhedron **VD = new Polyhedron_p[nd];
2718 Polyhedron *TC = true_context(P, C, options->MaxRays);
2719 FORALL_REDUCED_DOMAIN(PP, TC, nd, options, i, D, rVD)
2720 VD[nd++] = rVD;
2721 last = D;
2722 END_FORALL_REDUCED_DOMAIN
2723 Polyhedron_Free(TC);
2725 evalue *EP = 0;
2727 if (nd == 0)
2728 EP = evalue_zero();
2730 /* This doesn't seem to have any effect */
2731 if (nd == 1) {
2732 Polyhedron *CA = align_context(VD[0], P->Dimension, options->MaxRays);
2733 Polyhedron *O = P;
2734 P = DomainIntersection(P, CA, options->MaxRays);
2735 if (O != *PA)
2736 Polyhedron_Free(O);
2737 Polyhedron_Free(CA);
2738 if (emptyQ(P))
2739 EP = evalue_zero();
2742 if (PR != *PA)
2743 Polyhedron_Free(PR);
2744 PR = 0;
2746 if (!EP && nd > 1) {
2747 #ifdef DEBUG_ER
2748 fprintf(stderr, "\nER: VD\n");
2749 #endif /* DEBUG_ER */
2750 for (int i = 0; i < nd; ++i) {
2751 Polyhedron *CA = align_context(VD[i], P->Dimension, options->MaxRays);
2752 Polyhedron *I = DomainIntersection(P, CA, options->MaxRays);
2754 if (i == 0)
2755 EP = barvinok_enumerate_e_with_options(I, exist, nparam, options);
2756 else {
2757 evalue *E = barvinok_enumerate_e_with_options(I, exist, nparam,
2758 options);
2759 eadd(E, EP);
2760 free_evalue_refs(E);
2761 free(E);
2763 Polyhedron_Free(I);
2764 Polyhedron_Free(CA);
2768 for (int i = 0; i < nd; ++i)
2769 Polyhedron_Free(VD[i]);
2770 delete [] VD;
2771 value_clear(c);
2773 if (!EP && nvar == 0) {
2774 Value f;
2775 value_init(f);
2776 Param_Vertices *V, *V2;
2777 Matrix* M = Matrix_Alloc(1, P->Dimension+2);
2779 FORALL_PVertex_in_ParamPolyhedron(V, last, PP) {
2780 bool found = false;
2781 FORALL_PVertex_in_ParamPolyhedron(V2, last, PP) {
2782 if (V == V2) {
2783 found = true;
2784 continue;
2786 if (!found)
2787 continue;
2788 for (int i = 0; i < exist; ++i) {
2789 value_oppose(f, V->Vertex->p[i][nparam+1]);
2790 Vector_Combine(V->Vertex->p[i],
2791 V2->Vertex->p[i],
2792 M->p[0] + 1 + nvar + exist,
2793 V2->Vertex->p[i][nparam+1],
2795 nparam+1);
2796 int j;
2797 for (j = 0; j < nparam; ++j)
2798 if (value_notzero_p(M->p[0][1+nvar+exist+j]))
2799 break;
2800 if (j >= nparam)
2801 continue;
2802 ConstraintSimplify(M->p[0], M->p[0],
2803 P->Dimension+2, &f);
2804 value_set_si(M->p[0][0], 0);
2805 Polyhedron *para = AddConstraints(M->p[0], 1, P,
2806 options->MaxRays);
2807 if (emptyQ(para)) {
2808 Polyhedron_Free(para);
2809 continue;
2811 Polyhedron *pos, *neg;
2812 value_set_si(M->p[0][0], 1);
2813 value_decrement(M->p[0][P->Dimension+1],
2814 M->p[0][P->Dimension+1]);
2815 neg = AddConstraints(M->p[0], 1, P, options->MaxRays);
2816 value_set_si(f, -1);
2817 Vector_Scale(M->p[0]+1, M->p[0]+1, f,
2818 P->Dimension+1);
2819 value_decrement(M->p[0][P->Dimension+1],
2820 M->p[0][P->Dimension+1]);
2821 value_decrement(M->p[0][P->Dimension+1],
2822 M->p[0][P->Dimension+1]);
2823 pos = AddConstraints(M->p[0], 1, P, options->MaxRays);
2824 if (emptyQ(neg) && emptyQ(pos)) {
2825 Polyhedron_Free(para);
2826 Polyhedron_Free(pos);
2827 Polyhedron_Free(neg);
2828 continue;
2830 #ifdef DEBUG_ER
2831 fprintf(stderr, "\nER: Order\n");
2832 #endif /* DEBUG_ER */
2833 EP = barvinok_enumerate_e_with_options(para, exist, nparam,
2834 options);
2835 evalue *E;
2836 if (!emptyQ(pos)) {
2837 E = barvinok_enumerate_e_with_options(pos, exist, nparam,
2838 options);
2839 eadd(E, EP);
2840 free_evalue_refs(E);
2841 free(E);
2843 if (!emptyQ(neg)) {
2844 E = barvinok_enumerate_e_with_options(neg, exist, nparam,
2845 options);
2846 eadd(E, EP);
2847 free_evalue_refs(E);
2848 free(E);
2850 Polyhedron_Free(para);
2851 Polyhedron_Free(pos);
2852 Polyhedron_Free(neg);
2853 break;
2855 if (EP)
2856 break;
2857 } END_FORALL_PVertex_in_ParamPolyhedron;
2858 if (EP)
2859 break;
2860 } END_FORALL_PVertex_in_ParamPolyhedron;
2862 if (!EP) {
2863 /* Search for vertex coordinate to split on */
2864 /* First look for one independent of the parameters */
2865 FORALL_PVertex_in_ParamPolyhedron(V, last, PP) {
2866 for (int i = 0; i < exist; ++i) {
2867 int j;
2868 for (j = 0; j < nparam; ++j)
2869 if (value_notzero_p(V->Vertex->p[i][j]))
2870 break;
2871 if (j < nparam)
2872 continue;
2873 value_set_si(M->p[0][0], 1);
2874 Vector_Set(M->p[0]+1, 0, nvar+exist);
2875 Vector_Copy(V->Vertex->p[i],
2876 M->p[0] + 1 + nvar + exist, nparam+1);
2877 value_oppose(M->p[0][1+nvar+i],
2878 V->Vertex->p[i][nparam+1]);
2880 Polyhedron *pos, *neg;
2881 value_set_si(M->p[0][0], 1);
2882 value_decrement(M->p[0][P->Dimension+1],
2883 M->p[0][P->Dimension+1]);
2884 neg = AddConstraints(M->p[0], 1, P, options->MaxRays);
2885 value_set_si(f, -1);
2886 Vector_Scale(M->p[0]+1, M->p[0]+1, f,
2887 P->Dimension+1);
2888 value_decrement(M->p[0][P->Dimension+1],
2889 M->p[0][P->Dimension+1]);
2890 value_decrement(M->p[0][P->Dimension+1],
2891 M->p[0][P->Dimension+1]);
2892 pos = AddConstraints(M->p[0], 1, P, options->MaxRays);
2893 if (emptyQ(neg) || emptyQ(pos)) {
2894 Polyhedron_Free(pos);
2895 Polyhedron_Free(neg);
2896 continue;
2898 Polyhedron_Free(pos);
2899 value_increment(M->p[0][P->Dimension+1],
2900 M->p[0][P->Dimension+1]);
2901 pos = AddConstraints(M->p[0], 1, P, options->MaxRays);
2902 #ifdef DEBUG_ER
2903 fprintf(stderr, "\nER: Vertex\n");
2904 #endif /* DEBUG_ER */
2905 pos->next = neg;
2906 EP = enumerate_or(pos, exist, nparam, options);
2907 break;
2909 if (EP)
2910 break;
2911 } END_FORALL_PVertex_in_ParamPolyhedron;
2914 if (!EP) {
2915 /* Search for vertex coordinate to split on */
2916 /* Now look for one that depends on the parameters */
2917 FORALL_PVertex_in_ParamPolyhedron(V, last, PP) {
2918 for (int i = 0; i < exist; ++i) {
2919 value_set_si(M->p[0][0], 1);
2920 Vector_Set(M->p[0]+1, 0, nvar+exist);
2921 Vector_Copy(V->Vertex->p[i],
2922 M->p[0] + 1 + nvar + exist, nparam+1);
2923 value_oppose(M->p[0][1+nvar+i],
2924 V->Vertex->p[i][nparam+1]);
2926 Polyhedron *pos, *neg;
2927 value_set_si(M->p[0][0], 1);
2928 value_decrement(M->p[0][P->Dimension+1],
2929 M->p[0][P->Dimension+1]);
2930 neg = AddConstraints(M->p[0], 1, P, options->MaxRays);
2931 value_set_si(f, -1);
2932 Vector_Scale(M->p[0]+1, M->p[0]+1, f,
2933 P->Dimension+1);
2934 value_decrement(M->p[0][P->Dimension+1],
2935 M->p[0][P->Dimension+1]);
2936 value_decrement(M->p[0][P->Dimension+1],
2937 M->p[0][P->Dimension+1]);
2938 pos = AddConstraints(M->p[0], 1, P, options->MaxRays);
2939 if (emptyQ(neg) || emptyQ(pos)) {
2940 Polyhedron_Free(pos);
2941 Polyhedron_Free(neg);
2942 continue;
2944 Polyhedron_Free(pos);
2945 value_increment(M->p[0][P->Dimension+1],
2946 M->p[0][P->Dimension+1]);
2947 pos = AddConstraints(M->p[0], 1, P, options->MaxRays);
2948 #ifdef DEBUG_ER
2949 fprintf(stderr, "\nER: ParamVertex\n");
2950 #endif /* DEBUG_ER */
2951 pos->next = neg;
2952 EP = enumerate_or(pos, exist, nparam, options);
2953 break;
2955 if (EP)
2956 break;
2957 } END_FORALL_PVertex_in_ParamPolyhedron;
2960 Matrix_Free(M);
2961 value_clear(f);
2964 if (CEq)
2965 Polyhedron_Free(CEq);
2966 if (CT)
2967 Matrix_Free(CT);
2968 if (PP)
2969 Param_Polyhedron_Free(PP);
2970 *PA = P;
2972 return EP;
2975 evalue* barvinok_enumerate_pip(Polyhedron *P, unsigned exist, unsigned nparam,
2976 unsigned MaxRays)
2978 evalue *E;
2979 barvinok_options *options = barvinok_options_new_with_defaults();
2980 options->MaxRays = MaxRays;
2981 E = barvinok_enumerate_pip_with_options(P, exist, nparam, options);
2982 barvinok_options_free(options);
2983 return E;
2986 #ifndef HAVE_PIPLIB
2987 evalue *barvinok_enumerate_pip_with_options(Polyhedron *P,
2988 unsigned exist, unsigned nparam, struct barvinok_options *options)
2990 return 0;
2992 #else
2993 evalue *barvinok_enumerate_pip_with_options(Polyhedron *P,
2994 unsigned exist, unsigned nparam, struct barvinok_options *options)
2996 int nvar = P->Dimension - exist - nparam;
2997 evalue *EP = evalue_zero();
2998 Polyhedron *Q, *N;
3000 #ifdef DEBUG_ER
3001 fprintf(stderr, "\nER: PIP\n");
3002 #endif /* DEBUG_ER */
3004 Polyhedron *D = pip_projectout(P, nvar, exist, nparam);
3005 for (Q = D; Q; Q = N) {
3006 N = Q->next;
3007 Q->next = 0;
3008 evalue *E;
3009 exist = Q->Dimension - nvar - nparam;
3010 E = barvinok_enumerate_e_with_options(Q, exist, nparam, options);
3011 Polyhedron_Free(Q);
3012 eadd(E, EP);
3013 free_evalue_refs(E);
3014 free(E);
3017 return EP;
3019 #endif
3022 static bool is_single(Value *row, int pos, int len)
3024 return First_Non_Zero(row, pos) == -1 &&
3025 First_Non_Zero(row+pos+1, len-pos-1) == -1;
3028 static evalue* barvinok_enumerate_e_r(Polyhedron *P,
3029 unsigned exist, unsigned nparam, barvinok_options *options);
3031 #ifdef DEBUG_ER
3032 static int er_level = 0;
3034 evalue* barvinok_enumerate_e_with_options(Polyhedron *P,
3035 unsigned exist, unsigned nparam, barvinok_options *options)
3037 fprintf(stderr, "\nER: level %i\n", er_level);
3039 Polyhedron_PrintConstraints(stderr, P_VALUE_FMT, P);
3040 fprintf(stderr, "\nE %d\nP %d\n", exist, nparam);
3041 ++er_level;
3042 P = DomainConstraintSimplify(Polyhedron_Copy(P), options->MaxRays);
3043 evalue *EP = barvinok_enumerate_e_r(P, exist, nparam, options);
3044 Polyhedron_Free(P);
3045 --er_level;
3046 return EP;
3048 #else
3049 evalue* barvinok_enumerate_e_with_options(Polyhedron *P,
3050 unsigned exist, unsigned nparam, barvinok_options *options)
3052 P = DomainConstraintSimplify(Polyhedron_Copy(P), options->MaxRays);
3053 evalue *EP = barvinok_enumerate_e_r(P, exist, nparam, options);
3054 Polyhedron_Free(P);
3055 return EP;
3057 #endif
3059 evalue* barvinok_enumerate_e(Polyhedron *P, unsigned exist, unsigned nparam,
3060 unsigned MaxRays)
3062 evalue *E;
3063 barvinok_options *options = barvinok_options_new_with_defaults();
3064 options->MaxRays = MaxRays;
3065 E = barvinok_enumerate_e_with_options(P, exist, nparam, options);
3066 barvinok_options_free(options);
3067 return E;
3070 static evalue* barvinok_enumerate_e_r(Polyhedron *P,
3071 unsigned exist, unsigned nparam, barvinok_options *options)
3073 if (exist == 0) {
3074 Polyhedron *U = Universe_Polyhedron(nparam);
3075 evalue *EP = barvinok_enumerate_with_options(P, U, options);
3076 //char *param_name[] = {"P", "Q", "R", "S", "T" };
3077 //print_evalue(stdout, EP, param_name);
3078 Polyhedron_Free(U);
3079 return EP;
3082 int nvar = P->Dimension - exist - nparam;
3083 int len = P->Dimension + 2;
3085 /* for now */
3086 POL_ENSURE_FACETS(P);
3087 POL_ENSURE_VERTICES(P);
3089 if (emptyQ(P))
3090 return evalue_zero();
3092 if (nvar == 0 && nparam == 0) {
3093 evalue *EP = evalue_zero();
3094 barvinok_count_with_options(P, &EP->x.n, options);
3095 if (value_pos_p(EP->x.n))
3096 value_set_si(EP->x.n, 1);
3097 return EP;
3100 int r;
3101 for (r = 0; r < P->NbRays; ++r)
3102 if (value_zero_p(P->Ray[r][0]) ||
3103 value_zero_p(P->Ray[r][P->Dimension+1])) {
3104 int i;
3105 for (i = 0; i < nvar; ++i)
3106 if (value_notzero_p(P->Ray[r][i+1]))
3107 break;
3108 if (i >= nvar)
3109 continue;
3110 for (i = nvar + exist; i < nvar + exist + nparam; ++i)
3111 if (value_notzero_p(P->Ray[r][i+1]))
3112 break;
3113 if (i >= nvar + exist + nparam)
3114 break;
3116 if (r < P->NbRays) {
3117 evalue *EP = evalue_zero();
3118 value_set_si(EP->x.n, -1);
3119 return EP;
3122 int first;
3123 for (r = 0; r < P->NbEq; ++r)
3124 if ((first = First_Non_Zero(P->Constraint[r]+1+nvar, exist)) != -1)
3125 break;
3126 if (r < P->NbEq) {
3127 if (First_Non_Zero(P->Constraint[r]+1+nvar+first+1,
3128 exist-first-1) != -1) {
3129 Polyhedron *T = rotate_along(P, r, nvar, exist, options->MaxRays);
3130 #ifdef DEBUG_ER
3131 fprintf(stderr, "\nER: Equality\n");
3132 #endif /* DEBUG_ER */
3133 evalue *EP = barvinok_enumerate_e_with_options(T, exist-1, nparam,
3134 options);
3135 Polyhedron_Free(T);
3136 return EP;
3137 } else {
3138 #ifdef DEBUG_ER
3139 fprintf(stderr, "\nER: Fixed\n");
3140 #endif /* DEBUG_ER */
3141 if (first == 0)
3142 return barvinok_enumerate_e_with_options(P, exist-1, nparam,
3143 options);
3144 else {
3145 Polyhedron *T = Polyhedron_Copy(P);
3146 SwapColumns(T, nvar+1, nvar+1+first);
3147 evalue *EP = barvinok_enumerate_e_with_options(T, exist-1, nparam,
3148 options);
3149 Polyhedron_Free(T);
3150 return EP;
3155 Vector *row = Vector_Alloc(len);
3156 value_set_si(row->p[0], 1);
3158 Value f;
3159 value_init(f);
3161 enum constraint* info = new constraint[exist];
3162 for (int i = 0; i < exist; ++i) {
3163 info[i] = ALL_POS;
3164 for (int l = P->NbEq; l < P->NbConstraints; ++l) {
3165 if (value_negz_p(P->Constraint[l][nvar+i+1]))
3166 continue;
3167 bool l_parallel = is_single(P->Constraint[l]+nvar+1, i, exist);
3168 for (int u = P->NbEq; u < P->NbConstraints; ++u) {
3169 if (value_posz_p(P->Constraint[u][nvar+i+1]))
3170 continue;
3171 bool lu_parallel = l_parallel ||
3172 is_single(P->Constraint[u]+nvar+1, i, exist);
3173 value_oppose(f, P->Constraint[u][nvar+i+1]);
3174 Vector_Combine(P->Constraint[l]+1, P->Constraint[u]+1, row->p+1,
3175 f, P->Constraint[l][nvar+i+1], len-1);
3176 if (!(info[i] & INDEPENDENT)) {
3177 int j;
3178 for (j = 0; j < exist; ++j)
3179 if (j != i && value_notzero_p(row->p[nvar+j+1]))
3180 break;
3181 if (j == exist) {
3182 //printf("independent: i: %d, l: %d, u: %d\n", i, l, u);
3183 info[i] = (constraint)(info[i] | INDEPENDENT);
3186 if (info[i] & ALL_POS) {
3187 value_addto(row->p[len-1], row->p[len-1],
3188 P->Constraint[l][nvar+i+1]);
3189 value_addto(row->p[len-1], row->p[len-1], f);
3190 value_multiply(f, f, P->Constraint[l][nvar+i+1]);
3191 value_subtract(row->p[len-1], row->p[len-1], f);
3192 value_decrement(row->p[len-1], row->p[len-1]);
3193 ConstraintSimplify(row->p, row->p, len, &f);
3194 value_set_si(f, -1);
3195 Vector_Scale(row->p+1, row->p+1, f, len-1);
3196 value_decrement(row->p[len-1], row->p[len-1]);
3197 Polyhedron *T = AddConstraints(row->p, 1, P, options->MaxRays);
3198 if (!emptyQ(T)) {
3199 //printf("not all_pos: i: %d, l: %d, u: %d\n", i, l, u);
3200 info[i] = (constraint)(info[i] ^ ALL_POS);
3202 //puts("pos remainder");
3203 //Polyhedron_Print(stdout, P_VALUE_FMT, T);
3204 Polyhedron_Free(T);
3206 if (!(info[i] & ONE_NEG)) {
3207 if (lu_parallel) {
3208 negative_test_constraint(P->Constraint[l],
3209 P->Constraint[u],
3210 row->p, nvar+i, len, &f);
3211 oppose_constraint(row->p, len, &f);
3212 Polyhedron *T = AddConstraints(row->p, 1, P,
3213 options->MaxRays);
3214 if (emptyQ(T)) {
3215 //printf("one_neg i: %d, l: %d, u: %d\n", i, l, u);
3216 info[i] = (constraint)(info[i] | ONE_NEG);
3218 //puts("neg remainder");
3219 //Polyhedron_Print(stdout, P_VALUE_FMT, T);
3220 Polyhedron_Free(T);
3221 } else if (!(info[i] & ROT_NEG)) {
3222 if (parallel_constraints(P->Constraint[l],
3223 P->Constraint[u],
3224 row->p, nvar, exist)) {
3225 negative_test_constraint7(P->Constraint[l],
3226 P->Constraint[u],
3227 row->p, nvar, exist,
3228 len, &f);
3229 oppose_constraint(row->p, len, &f);
3230 Polyhedron *T = AddConstraints(row->p, 1, P,
3231 options->MaxRays);
3232 if (emptyQ(T)) {
3233 // printf("rot_neg i: %d, l: %d, u: %d\n", i, l, u);
3234 info[i] = (constraint)(info[i] | ROT_NEG);
3235 r = l;
3237 //puts("neg remainder");
3238 //Polyhedron_Print(stdout, P_VALUE_FMT, T);
3239 Polyhedron_Free(T);
3243 if (!(info[i] & ALL_POS) && (info[i] & (ONE_NEG | ROT_NEG)))
3244 goto next;
3247 if (info[i] & ALL_POS)
3248 break;
3249 next:
3254 for (int i = 0; i < exist; ++i)
3255 printf("%i: %i\n", i, info[i]);
3257 for (int i = 0; i < exist; ++i)
3258 if (info[i] & ALL_POS) {
3259 #ifdef DEBUG_ER
3260 fprintf(stderr, "\nER: Positive\n");
3261 #endif /* DEBUG_ER */
3262 // Eliminate
3263 // Maybe we should chew off some of the fat here
3264 Matrix *M = Matrix_Alloc(P->Dimension, P->Dimension+1);
3265 for (int j = 0; j < P->Dimension; ++j)
3266 value_set_si(M->p[j][j + (j >= i+nvar)], 1);
3267 Polyhedron *T = Polyhedron_Image(P, M, options->MaxRays);
3268 Matrix_Free(M);
3269 evalue *EP = barvinok_enumerate_e_with_options(T, exist-1, nparam,
3270 options);
3271 Polyhedron_Free(T);
3272 value_clear(f);
3273 Vector_Free(row);
3274 delete [] info;
3275 return EP;
3277 for (int i = 0; i < exist; ++i)
3278 if (info[i] & ONE_NEG) {
3279 #ifdef DEBUG_ER
3280 fprintf(stderr, "\nER: Negative\n");
3281 #endif /* DEBUG_ER */
3282 Vector_Free(row);
3283 value_clear(f);
3284 delete [] info;
3285 if (i == 0)
3286 return barvinok_enumerate_e_with_options(P, exist-1, nparam,
3287 options);
3288 else {
3289 Polyhedron *T = Polyhedron_Copy(P);
3290 SwapColumns(T, nvar+1, nvar+1+i);
3291 evalue *EP = barvinok_enumerate_e_with_options(T, exist-1, nparam,
3292 options);
3293 Polyhedron_Free(T);
3294 return EP;
3297 for (int i = 0; i < exist; ++i)
3298 if (info[i] & ROT_NEG) {
3299 #ifdef DEBUG_ER
3300 fprintf(stderr, "\nER: Rotate\n");
3301 #endif /* DEBUG_ER */
3302 Vector_Free(row);
3303 value_clear(f);
3304 delete [] info;
3305 Polyhedron *T = rotate_along(P, r, nvar, exist, options->MaxRays);
3306 evalue *EP = barvinok_enumerate_e_with_options(T, exist-1, nparam,
3307 options);
3308 Polyhedron_Free(T);
3309 return EP;
3311 for (int i = 0; i < exist; ++i)
3312 if (info[i] & INDEPENDENT) {
3313 Polyhedron *pos, *neg;
3315 /* Find constraint again and split off negative part */
3317 if (SplitOnVar(P, i, nvar, exist, options->MaxRays,
3318 row, f, true, &pos, &neg)) {
3319 #ifdef DEBUG_ER
3320 fprintf(stderr, "\nER: Split\n");
3321 #endif /* DEBUG_ER */
3323 evalue *EP =
3324 barvinok_enumerate_e_with_options(neg, exist-1, nparam, options);
3325 evalue *E =
3326 barvinok_enumerate_e_with_options(pos, exist, nparam, options);
3327 eadd(E, EP);
3328 free_evalue_refs(E);
3329 free(E);
3330 Polyhedron_Free(neg);
3331 Polyhedron_Free(pos);
3332 value_clear(f);
3333 Vector_Free(row);
3334 delete [] info;
3335 return EP;
3338 delete [] info;
3340 Polyhedron *O = P;
3341 Polyhedron *F;
3343 evalue *EP;
3345 EP = enumerate_line(P, exist, nparam, options);
3346 if (EP)
3347 goto out;
3349 EP = barvinok_enumerate_pip_with_options(P, exist, nparam, options);
3350 if (EP)
3351 goto out;
3353 EP = enumerate_redundant_ray(P, exist, nparam, options);
3354 if (EP)
3355 goto out;
3357 EP = enumerate_sure(P, exist, nparam, options);
3358 if (EP)
3359 goto out;
3361 EP = enumerate_ray(P, exist, nparam, options);
3362 if (EP)
3363 goto out;
3365 EP = enumerate_sure2(P, exist, nparam, options);
3366 if (EP)
3367 goto out;
3369 F = unfringe(P, options->MaxRays);
3370 if (!PolyhedronIncludes(F, P)) {
3371 #ifdef DEBUG_ER
3372 fprintf(stderr, "\nER: Fringed\n");
3373 #endif /* DEBUG_ER */
3374 EP = barvinok_enumerate_e_with_options(F, exist, nparam, options);
3375 Polyhedron_Free(F);
3376 goto out;
3378 Polyhedron_Free(F);
3380 if (nparam)
3381 EP = enumerate_vd(&P, exist, nparam, options);
3382 if (EP)
3383 goto out2;
3385 if (nvar != 0) {
3386 EP = enumerate_sum(P, exist, nparam, options);
3387 goto out2;
3390 assert(nvar == 0);
3392 int i;
3393 Polyhedron *pos, *neg;
3394 for (i = 0; i < exist; ++i)
3395 if (SplitOnVar(P, i, nvar, exist, options->MaxRays,
3396 row, f, false, &pos, &neg))
3397 break;
3399 assert (i < exist);
3401 pos->next = neg;
3402 EP = enumerate_or(pos, exist, nparam, options);
3404 out2:
3405 if (O != P)
3406 Polyhedron_Free(P);
3408 out:
3409 value_clear(f);
3410 Vector_Free(row);
3411 return EP;
3415 * remove equalities that require a "compression" of the parameters
3417 static Polyhedron *remove_more_equalities(Polyhedron *P, unsigned nparam,
3418 Matrix **CP, unsigned MaxRays)
3420 Polyhedron *Q = P;
3421 remove_all_equalities(&P, NULL, CP, NULL, nparam, MaxRays);
3422 if (P != Q)
3423 Polyhedron_Free(Q);
3424 return P;
3427 /* frees P */
3428 static gen_fun *series(Polyhedron *P, unsigned nparam, barvinok_options *options)
3430 Matrix *CP = NULL;
3431 gen_fun *gf;
3433 if (emptyQ2(P)) {
3434 Polyhedron_Free(P);
3435 return new gen_fun;
3438 assert(!Polyhedron_is_unbounded(P, nparam, options->MaxRays));
3439 assert(P->NbBid == 0);
3440 assert(Polyhedron_has_revlex_positive_rays(P, nparam));
3441 if (P->NbEq != 0)
3442 P = remove_more_equalities(P, nparam, &CP, options->MaxRays);
3443 assert(P->NbEq == 0);
3444 if (CP)
3445 nparam = CP->NbColumns-1;
3447 if (nparam == 0) {
3448 Value c;
3449 value_init(c);
3450 barvinok_count_with_options(P, &c, options);
3451 gf = new gen_fun(c);
3452 value_clear(c);
3453 } else {
3454 gf_base *red;
3455 red = gf_base::create(Polyhedron_Project(P, nparam),
3456 P->Dimension, nparam, options);
3457 POL_ENSURE_VERTICES(P);
3458 red->start_gf(P, options);
3459 gf = red->gf;
3460 delete red;
3462 if (CP) {
3463 gf->substitute(CP);
3464 Matrix_Free(CP);
3466 Polyhedron_Free(P);
3467 return gf;
3470 gen_fun * barvinok_series_with_options(Polyhedron *P, Polyhedron* C,
3471 barvinok_options *options)
3473 Polyhedron *CA;
3474 unsigned nparam = C->Dimension;
3475 gen_fun *gf;
3477 CA = align_context(C, P->Dimension, options->MaxRays);
3478 P = DomainIntersection(P, CA, options->MaxRays);
3479 Polyhedron_Free(CA);
3481 gf = series(P, nparam, options);
3483 return gf;
3486 gen_fun * barvinok_series(Polyhedron *P, Polyhedron* C, unsigned MaxRays)
3488 gen_fun *gf;
3489 barvinok_options *options = barvinok_options_new_with_defaults();
3490 options->MaxRays = MaxRays;
3491 gf = barvinok_series_with_options(P, C, options);
3492 barvinok_options_free(options);
3493 return gf;
3496 static Polyhedron *skew_into_positive_orthant(Polyhedron *D, unsigned nparam,
3497 unsigned MaxRays)
3499 Matrix *M = NULL;
3500 Value tmp;
3501 value_init(tmp);
3502 for (Polyhedron *P = D; P; P = P->next) {
3503 POL_ENSURE_VERTICES(P);
3504 assert(!Polyhedron_is_unbounded(P, nparam, MaxRays));
3505 assert(P->NbBid == 0);
3506 assert(Polyhedron_has_positive_rays(P, nparam));
3508 for (int r = 0; r < P->NbRays; ++r) {
3509 if (value_notzero_p(P->Ray[r][P->Dimension+1]))
3510 continue;
3511 for (int i = 0; i < nparam; ++i) {
3512 int j;
3513 if (value_posz_p(P->Ray[r][i+1]))
3514 continue;
3515 if (!M) {
3516 M = Matrix_Alloc(D->Dimension+1, D->Dimension+1);
3517 for (int i = 0; i < D->Dimension+1; ++i)
3518 value_set_si(M->p[i][i], 1);
3519 } else {
3520 Inner_Product(P->Ray[r]+1, M->p[i], D->Dimension+1, &tmp);
3521 if (value_posz_p(tmp))
3522 continue;
3524 for (j = P->Dimension - nparam; j < P->Dimension; ++j)
3525 if (value_pos_p(P->Ray[r][j+1]))
3526 break;
3527 assert(j < P->Dimension);
3528 value_pdivision(tmp, P->Ray[r][j+1], P->Ray[r][i+1]);
3529 value_subtract(M->p[i][j], M->p[i][j], tmp);
3533 value_clear(tmp);
3534 if (M) {
3535 D = DomainImage(D, M, MaxRays);
3536 Matrix_Free(M);
3538 return D;
3541 gen_fun* barvinok_enumerate_union_series_with_options(Polyhedron *D, Polyhedron* C,
3542 barvinok_options *options)
3544 Polyhedron *conv, *D2;
3545 Polyhedron *CA;
3546 gen_fun *gf = NULL, *gf2;
3547 unsigned nparam = C->Dimension;
3548 ZZ one, mone;
3549 one = 1;
3550 mone = -1;
3552 CA = align_context(C, D->Dimension, options->MaxRays);
3553 D = DomainIntersection(D, CA, options->MaxRays);
3554 Polyhedron_Free(CA);
3556 D2 = skew_into_positive_orthant(D, nparam, options->MaxRays);
3557 for (Polyhedron *P = D2; P; P = P->next) {
3558 assert(P->Dimension == D2->Dimension);
3559 gen_fun *P_gf;
3561 P_gf = series(Polyhedron_Copy(P), nparam, options);
3562 if (!gf)
3563 gf = P_gf;
3564 else {
3565 gf->add_union(P_gf, options);
3566 delete P_gf;
3569 /* we actually only need the convex union of the parameter space
3570 * but the reducer classes currently expect a polyhedron in
3571 * the combined space
3573 Polyhedron_Free(gf->context);
3574 gf->context = DomainConvex(D2, options->MaxRays);
3576 gf2 = gf->summate(D2->Dimension - nparam, options);
3578 delete gf;
3579 if (D != D2)
3580 Domain_Free(D2);
3581 Domain_Free(D);
3582 return gf2;
3585 gen_fun* barvinok_enumerate_union_series(Polyhedron *D, Polyhedron* C,
3586 unsigned MaxRays)
3588 gen_fun *gf;
3589 barvinok_options *options = barvinok_options_new_with_defaults();
3590 options->MaxRays = MaxRays;
3591 gf = barvinok_enumerate_union_series_with_options(D, C, options);
3592 barvinok_options_free(options);
3593 return gf;
3596 evalue* barvinok_enumerate_union(Polyhedron *D, Polyhedron* C, unsigned MaxRays)
3598 evalue *EP;
3599 gen_fun *gf = barvinok_enumerate_union_series(D, C, MaxRays);
3600 EP = *gf;
3601 delete gf;
3602 return EP;