Initial implementation of barvinok_enumerate_e.
[barvinok.git] / barvinok.cc
bloba4eabde57156682c26e8d905634670790557d655
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 <util.h>
11 extern "C" {
12 #include <polylib/polylibgmp.h>
13 #include "ev_operations.h"
15 #include "config.h"
16 #include <barvinok.h>
18 #ifdef NTL_STD_CXX
19 using namespace NTL;
20 #endif
21 using std::cout;
22 using std::endl;
23 using std::vector;
24 using std::deque;
25 using std::string;
26 using std::ostringstream;
28 #define ALLOC(p) (((long *) (p))[0])
29 #define SIZE(p) (((long *) (p))[1])
30 #define DATA(p) ((mp_limb_t *) (((long *) (p)) + 2))
32 static void value2zz(Value v, ZZ& z)
34 int sa = v[0]._mp_size;
35 int abs_sa = sa < 0 ? -sa : sa;
37 _ntl_gsetlength(&z.rep, abs_sa);
38 mp_limb_t * adata = DATA(z.rep);
39 for (int i = 0; i < abs_sa; ++i)
40 adata[i] = v[0]._mp_d[i];
41 SIZE(z.rep) = sa;
44 static void zz2value(ZZ& z, Value& v)
46 if (!z.rep) {
47 value_set_si(v, 0);
48 return;
51 int sa = SIZE(z.rep);
52 int abs_sa = sa < 0 ? -sa : sa;
54 mp_limb_t * adata = DATA(z.rep);
55 mpz_realloc2(v, __GMP_BITS_PER_MP_LIMB * abs_sa);
56 for (int i = 0; i < abs_sa; ++i)
57 v[0]._mp_d[i] = adata[i];
58 v[0]._mp_size = sa;
61 #undef ALLOC
62 #define ALLOC(p) p = (typeof(p))malloc(sizeof(*p))
65 * We just ignore the last column and row
66 * If the final element is not equal to one
67 * then the result will actually be a multiple of the input
69 static void matrix2zz(Matrix *M, mat_ZZ& m, unsigned nr, unsigned nc)
71 m.SetDims(nr, nc);
73 for (int i = 0; i < nr; ++i) {
74 // assert(value_one_p(M->p[i][M->NbColumns - 1]));
75 for (int j = 0; j < nc; ++j) {
76 value2zz(M->p[i][j], m[i][j]);
81 static void values2zz(Value *p, vec_ZZ& v, int len)
83 v.SetLength(len);
85 for (int i = 0; i < len; ++i) {
86 value2zz(p[i], v[i]);
92 static void zz2values(vec_ZZ& v, Value *p)
94 for (int i = 0; i < v.length(); ++i)
95 zz2value(v[i], p[i]);
98 static void rays(mat_ZZ& r, Polyhedron *C)
100 unsigned dim = C->NbRays - 1; /* don't count zero vertex */
101 assert(C->NbRays - 1 == C->Dimension);
102 r.SetDims(dim, dim);
103 ZZ tmp;
105 int i, c;
106 for (i = 0, c = 0; i < dim; ++i)
107 if (value_zero_p(C->Ray[i][dim+1])) {
108 for (int j = 0; j < dim; ++j) {
109 value2zz(C->Ray[i][j+1], tmp);
110 r[j][c] = tmp;
112 ++c;
116 static Matrix * rays(Polyhedron *C)
118 unsigned dim = C->NbRays - 1; /* don't count zero vertex */
119 assert(C->NbRays - 1 == C->Dimension);
121 Matrix *M = Matrix_Alloc(dim+1, dim+1);
122 assert(M);
124 int i, c;
125 for (i = 0, c = 0; i <= dim && c < dim; ++i)
126 if (value_zero_p(C->Ray[i][dim+1])) {
127 Vector_Copy(C->Ray[i] + 1, M->p[c], dim);
128 value_set_si(M->p[c++][dim], 0);
130 assert(c == dim);
131 value_set_si(M->p[dim][dim], 1);
133 return M;
136 static Matrix * rays2(Polyhedron *C)
138 unsigned dim = C->NbRays - 1; /* don't count zero vertex */
139 assert(C->NbRays - 1 == C->Dimension);
141 Matrix *M = Matrix_Alloc(dim, dim);
142 assert(M);
144 int i, c;
145 for (i = 0, c = 0; i <= dim && c < dim; ++i)
146 if (value_zero_p(C->Ray[i][dim+1]))
147 Vector_Copy(C->Ray[i] + 1, M->p[c++], dim);
148 assert(c == dim);
150 return M;
154 * Returns the largest absolute value in the vector
156 static ZZ max(vec_ZZ& v)
158 ZZ max = abs(v[0]);
159 for (int i = 1; i < v.length(); ++i)
160 if (abs(v[i]) > max)
161 max = abs(v[i]);
162 return max;
165 class cone {
166 public:
167 cone(Matrix *M) {
168 Cone = 0;
169 Rays = Matrix_Copy(M);
170 set_det();
172 cone(Polyhedron *C) {
173 Cone = Polyhedron_Copy(C);
174 Rays = rays(C);
175 set_det();
177 void set_det() {
178 mat_ZZ A;
179 matrix2zz(Rays, A, Rays->NbRows - 1, Rays->NbColumns - 1);
180 det = determinant(A);
181 Value v;
182 value_init(v);
183 zz2value(det, v);
184 value_clear(v);
187 Vector* short_vector(vec_ZZ& lambda) {
188 Matrix *M = Matrix_Copy(Rays);
189 Matrix *inv = Matrix_Alloc(M->NbRows, M->NbColumns);
190 int ok = Matrix_Inverse(M, inv);
191 assert(ok);
192 Matrix_Free(M);
194 ZZ det2;
195 mat_ZZ B;
196 mat_ZZ U;
197 matrix2zz(inv, B, inv->NbRows - 1, inv->NbColumns - 1);
198 long r = LLL(det2, B, U);
200 ZZ min = max(B[0]);
201 int index = 0;
202 for (int i = 1; i < B.NumRows(); ++i) {
203 ZZ tmp = max(B[i]);
204 if (tmp < min) {
205 min = tmp;
206 index = i;
210 Matrix_Free(inv);
212 lambda = B[index];
214 Vector *z = Vector_Alloc(U[index].length()+1);
215 assert(z);
216 zz2values(U[index], z->p);
217 value_set_si(z->p[U[index].length()], 0);
219 Value tmp;
220 value_init(tmp);
221 Polyhedron *C = poly();
222 int i;
223 for (i = 0; i < C->NbConstraints; ++i) {
224 Inner_Product(z->p, C->Constraint[i]+1, z->Size-1, &tmp);
225 if (value_pos_p(tmp))
226 break;
228 if (i == C->NbConstraints) {
229 value_set_si(tmp, -1);
230 Vector_Scale(z->p, z->p, tmp, z->Size-1);
232 value_clear(tmp);
233 return z;
236 ~cone() {
237 Polyhedron_Free(Cone);
238 Matrix_Free(Rays);
241 Polyhedron *poly() {
242 if (!Cone) {
243 Matrix *M = Matrix_Alloc(Rays->NbRows+1, Rays->NbColumns+1);
244 for (int i = 0; i < Rays->NbRows; ++i) {
245 Vector_Copy(Rays->p[i], M->p[i]+1, Rays->NbColumns);
246 value_set_si(M->p[i][0], 1);
248 Vector_Set(M->p[Rays->NbRows]+1, 0, Rays->NbColumns-1);
249 value_set_si(M->p[Rays->NbRows][0], 1);
250 value_set_si(M->p[Rays->NbRows][Rays->NbColumns], 1);
251 Cone = Rays2Polyhedron(M, M->NbRows+1);
252 assert(Cone->NbConstraints == Cone->NbRays);
253 Matrix_Free(M);
255 return Cone;
258 ZZ det;
259 Polyhedron *Cone;
260 Matrix *Rays;
263 class dpoly {
264 public:
265 vec_ZZ coeff;
266 dpoly(int d, ZZ& degree, int offset = 0) {
267 coeff.SetLength(d+1);
269 int min = d + offset;
270 if (degree < ZZ(INIT_VAL, min))
271 min = to_int(degree);
273 ZZ c = ZZ(INIT_VAL, 1);
274 if (!offset)
275 coeff[0] = c;
276 for (int i = 1; i <= min; ++i) {
277 c *= (degree -i + 1);
278 c /= i;
279 coeff[i-offset] = c;
282 void operator *= (dpoly& f) {
283 assert(coeff.length() == f.coeff.length());
284 vec_ZZ old = coeff;
285 coeff = f.coeff[0] * coeff;
286 for (int i = 1; i < coeff.length(); ++i)
287 for (int j = 0; i+j < coeff.length(); ++j)
288 coeff[i+j] += f.coeff[i] * old[j];
290 void div(dpoly& d, mpq_t count, ZZ& sign) {
291 int len = coeff.length();
292 Value tmp;
293 value_init(tmp);
294 mpq_t* c = new mpq_t[coeff.length()];
295 mpq_t qtmp;
296 mpq_init(qtmp);
297 for (int i = 0; i < len; ++i) {
298 mpq_init(c[i]);
299 zz2value(coeff[i], tmp);
300 mpq_set_z(c[i], tmp);
302 for (int j = 1; j <= i; ++j) {
303 zz2value(d.coeff[j], tmp);
304 mpq_set_z(qtmp, tmp);
305 mpq_mul(qtmp, qtmp, c[i-j]);
306 mpq_sub(c[i], c[i], qtmp);
309 zz2value(d.coeff[0], tmp);
310 mpq_set_z(qtmp, tmp);
311 mpq_div(c[i], c[i], qtmp);
313 if (sign == -1)
314 mpq_sub(count, count, c[len-1]);
315 else
316 mpq_add(count, count, c[len-1]);
318 value_clear(tmp);
319 mpq_clear(qtmp);
320 for (int i = 0; i < len; ++i)
321 mpq_clear(c[i]);
322 delete [] c;
326 class dpoly_n {
327 public:
328 Matrix *coeff;
329 ~dpoly_n() {
330 Matrix_Free(coeff);
332 dpoly_n(int d, ZZ& degree_0, ZZ& degree_1, int offset = 0) {
333 Value d0, d1;
334 value_init(d0);
335 value_init(d1);
336 zz2value(degree_0, d0);
337 zz2value(degree_1, d1);
338 coeff = Matrix_Alloc(d+1, d+1+1);
339 value_set_si(coeff->p[0][0], 1);
340 value_set_si(coeff->p[0][d+1], 1);
341 for (int i = 1; i <= d; ++i) {
342 value_multiply(coeff->p[i][0], coeff->p[i-1][0], d0);
343 Vector_Combine(coeff->p[i-1], coeff->p[i-1]+1, coeff->p[i]+1,
344 d1, d0, i);
345 value_set_si(coeff->p[i][d+1], i);
346 value_multiply(coeff->p[i][d+1], coeff->p[i][d+1], coeff->p[i-1][d+1]);
347 value_decrement(d0, d0);
349 value_clear(d0);
350 value_clear(d1);
352 void div(dpoly& d, Vector *count, ZZ& sign) {
353 int len = coeff->NbRows;
354 Matrix * c = Matrix_Alloc(coeff->NbRows, coeff->NbColumns);
355 Value tmp;
356 value_init(tmp);
357 for (int i = 0; i < len; ++i) {
358 Vector_Copy(coeff->p[i], c->p[i], len+1);
359 for (int j = 1; j <= i; ++j) {
360 zz2value(d.coeff[j], tmp);
361 value_multiply(tmp, tmp, c->p[i][len]);
362 value_oppose(tmp, tmp);
363 Vector_Combine(c->p[i], c->p[i-j], c->p[i],
364 c->p[i-j][len], tmp, len);
365 value_multiply(c->p[i][len], c->p[i][len], c->p[i-j][len]);
367 zz2value(d.coeff[0], tmp);
368 value_multiply(c->p[i][len], c->p[i][len], tmp);
370 if (sign == -1) {
371 value_set_si(tmp, -1);
372 Vector_Scale(c->p[len-1], count->p, tmp, len);
373 value_assign(count->p[len], c->p[len-1][len]);
374 } else
375 Vector_Copy(c->p[len-1], count->p, len+1);
376 Vector_Normalize(count->p, len+1);
377 value_clear(tmp);
378 Matrix_Free(c);
383 * Barvinok's Decomposition of a simplicial cone
385 * Returns two lists of polyhedra
387 void barvinok_decompose(Polyhedron *C, Polyhedron **ppos, Polyhedron **pneg)
389 Polyhedron *pos = *ppos, *neg = *pneg;
390 vector<cone *> nonuni;
391 cone * c = new cone(C);
392 ZZ det = c->det;
393 int s = sign(det);
394 assert(det != 0);
395 if (abs(det) > 1) {
396 nonuni.push_back(c);
397 } else {
398 Polyhedron *p = Polyhedron_Copy(c->Cone);
399 p->next = pos;
400 pos = p;
401 delete c;
403 vec_ZZ lambda;
404 while (!nonuni.empty()) {
405 c = nonuni.back();
406 nonuni.pop_back();
407 Vector* v = c->short_vector(lambda);
408 for (int i = 0; i < c->Rays->NbRows - 1; ++i) {
409 if (lambda[i] == 0)
410 continue;
411 Matrix* M = Matrix_Copy(c->Rays);
412 Vector_Copy(v->p, M->p[i], v->Size);
413 cone * pc = new cone(M);
414 assert (pc->det != 0);
415 if (abs(pc->det) > 1) {
416 assert(abs(pc->det) < abs(c->det));
417 nonuni.push_back(pc);
418 } else {
419 Polyhedron *p = pc->poly();
420 pc->Cone = 0;
421 if (sign(pc->det) == s) {
422 p->next = pos;
423 pos = p;
424 } else {
425 p->next = neg;
426 neg = p;
428 delete pc;
430 Matrix_Free(M);
432 Vector_Free(v);
433 delete c;
435 *ppos = pos;
436 *pneg = neg;
440 * Returns a single list of npos "positive" cones followed by nneg
441 * "negative" cones.
442 * The input cone is freed
444 void decompose(Polyhedron *cone, Polyhedron **parts, int *npos, int *nneg, unsigned MaxRays)
446 Polyhedron_Polarize(cone);
447 if (cone->NbRays - 1 != cone->Dimension) {
448 Polyhedron *tmp = cone;
449 cone = triangularize_cone(cone, MaxRays);
450 Polyhedron_Free(tmp);
452 Polyhedron *polpos = NULL, *polneg = NULL;
453 *npos = 0; *nneg = 0;
454 for (Polyhedron *Polar = cone; Polar; Polar = Polar->next)
455 barvinok_decompose(Polar, &polpos, &polneg);
457 Polyhedron *last;
458 for (Polyhedron *i = polpos; i; i = i->next) {
459 Polyhedron_Polarize(i);
460 ++*npos;
461 last = i;
463 for (Polyhedron *i = polneg; i; i = i->next) {
464 Polyhedron_Polarize(i);
465 ++*nneg;
467 if (last) {
468 last->next = polneg;
469 *parts = polpos;
470 } else
471 *parts = polneg;
472 Domain_Free(cone);
475 const int MAX_TRY=10;
477 * Searches for a vector that is not othogonal to any
478 * of the rays in rays.
480 static void nonorthog(mat_ZZ& rays, vec_ZZ& lambda)
482 int dim = rays.NumCols();
483 bool found = false;
484 lambda.SetLength(dim);
485 for (int i = 2; !found && i <= 50*dim; i+=4) {
486 for (int j = 0; j < MAX_TRY; ++j) {
487 for (int k = 0; k < dim; ++k) {
488 int r = random_int(i)+2;
489 int v = (2*(r%2)-1) * (r >> 1);
490 lambda[k] = v;
492 int k = 0;
493 for (; k < rays.NumRows(); ++k)
494 if (lambda * rays[k] == 0)
495 break;
496 if (k == rays.NumRows()) {
497 found = true;
498 break;
502 assert(found);
505 static void add_rays(mat_ZZ& rays, Polyhedron *i, int *r)
507 unsigned dim = i->Dimension;
508 for (int k = 0; k < i->NbRays; ++k) {
509 if (!value_zero_p(i->Ray[k][dim+1]))
510 continue;
511 values2zz(i->Ray[k]+1, rays[(*r)++], dim);
515 void lattice_point(Value* values, Polyhedron *i, vec_ZZ& lambda, ZZ& num)
517 vec_ZZ vertex;
518 unsigned dim = i->Dimension;
519 if(!value_one_p(values[dim])) {
520 Matrix* Rays = rays(i);
521 Matrix *inv = Matrix_Alloc(Rays->NbRows, Rays->NbColumns);
522 int ok = Matrix_Inverse(Rays, inv);
523 assert(ok);
524 Matrix_Free(Rays);
525 Rays = rays(i);
526 Vector *lambda = Vector_Alloc(dim+1);
527 Vector_Matrix_Product(values, inv, lambda->p);
528 Matrix_Free(inv);
529 for (int j = 0; j < dim; ++j)
530 mpz_cdiv_q(lambda->p[j], lambda->p[j], lambda->p[dim]);
531 value_set_si(lambda->p[dim], 1);
532 Vector *A = Vector_Alloc(dim+1);
533 Vector_Matrix_Product(lambda->p, Rays, A->p);
534 Vector_Free(lambda);
535 Matrix_Free(Rays);
536 values2zz(A->p, vertex, dim);
537 Vector_Free(A);
538 } else
539 values2zz(values, vertex, dim);
541 num = vertex * lambda;
544 static evalue *term(int param, ZZ& c, Value *den = NULL)
546 evalue *EP = new evalue();
547 value_init(EP->d);
548 value_set_si(EP->d,0);
549 EP->x.p = new_enode(polynomial, 2, param + 1);
550 evalue_set_si(&EP->x.p->arr[0], 0, 1);
551 value_init(EP->x.p->arr[1].x.n);
552 if (den == NULL)
553 value_set_si(EP->x.p->arr[1].d, 1);
554 else
555 value_assign(EP->x.p->arr[1].d, *den);
556 zz2value(c, EP->x.p->arr[1].x.n);
557 return EP;
560 static void vertex_period(
561 Polyhedron *i, vec_ZZ& lambda, Matrix *T,
562 Value lcm, int p, Vector *val,
563 evalue *E, evalue* ev,
564 ZZ& offset)
566 unsigned nparam = T->NbRows - 1;
567 unsigned dim = i->Dimension;
568 Value tmp;
569 ZZ nump;
571 if (p == nparam) {
572 ZZ num, l;
573 Vector * values = Vector_Alloc(dim + 1);
574 Vector_Matrix_Product(val->p, T, values->p);
575 value_assign(values->p[dim], lcm);
576 lattice_point(values->p, i, lambda, num);
577 value2zz(lcm, l);
578 num *= l;
579 num += offset;
580 value_init(ev->x.n);
581 zz2value(num, ev->x.n);
582 value_assign(ev->d, lcm);
583 Vector_Free(values);
584 return;
587 value_init(tmp);
588 vec_ZZ vertex;
589 values2zz(T->p[p], vertex, dim);
590 nump = vertex * lambda;
591 if (First_Non_Zero(val->p, p) == -1) {
592 value_assign(tmp, lcm);
593 evalue *ET = term(p, nump, &tmp);
594 eadd(ET, E);
595 free_evalue_refs(ET);
596 delete ET;
599 value_assign(tmp, lcm);
600 if (First_Non_Zero(T->p[p], dim) != -1)
601 Vector_Gcd(T->p[p], dim, &tmp);
602 Gcd(tmp, lcm, &tmp);
603 if (value_lt(tmp, lcm)) {
604 ZZ count;
606 value_division(tmp, lcm, tmp);
607 value_set_si(ev->d, 0);
608 ev->x.p = new_enode(periodic, VALUE_TO_INT(tmp), p+1);
609 value2zz(tmp, count);
610 do {
611 value_decrement(tmp, tmp);
612 --count;
613 ZZ new_offset = offset - count * nump;
614 value_assign(val->p[p], tmp);
615 vertex_period(i, lambda, T, lcm, p+1, val, E,
616 &ev->x.p->arr[VALUE_TO_INT(tmp)], new_offset);
617 } while (value_pos_p(tmp));
618 } else
619 vertex_period(i, lambda, T, lcm, p+1, val, E, ev, offset);
620 value_clear(tmp);
623 static void mask_r(Matrix *f, int nr, Vector *lcm, int p, Vector *val, evalue *ev)
625 unsigned nparam = lcm->Size;
627 if (p == nparam) {
628 Vector * prod = Vector_Alloc(f->NbRows);
629 Matrix_Vector_Product(f, val->p, prod->p);
630 int isint = 1;
631 for (int i = 0; i < nr; ++i) {
632 value_modulus(prod->p[i], prod->p[i], f->p[i][nparam+1]);
633 isint &= value_zero_p(prod->p[i]);
635 value_set_si(ev->d, 1);
636 value_init(ev->x.n);
637 value_set_si(ev->x.n, isint);
638 Vector_Free(prod);
639 return;
642 Value tmp;
643 value_init(tmp);
644 if (value_one_p(lcm->p[p]))
645 mask_r(f, nr, lcm, p+1, val, ev);
646 else {
647 value_assign(tmp, lcm->p[p]);
648 value_set_si(ev->d, 0);
649 ev->x.p = new_enode(periodic, VALUE_TO_INT(tmp), p+1);
650 do {
651 value_decrement(tmp, tmp);
652 value_assign(val->p[p], tmp);
653 mask_r(f, nr, lcm, p+1, val, &ev->x.p->arr[VALUE_TO_INT(tmp)]);
654 } while (value_pos_p(tmp));
656 value_clear(tmp);
659 static evalue *multi_monom(vec_ZZ& p)
661 evalue *X = new evalue();
662 value_init(X->d);
663 value_init(X->x.n);
664 unsigned nparam = p.length()-1;
665 zz2value(p[nparam], X->x.n);
666 value_set_si(X->d, 1);
667 for (int i = 0; i < nparam; ++i) {
668 if (p[i] == 0)
669 continue;
670 evalue *T = term(i, p[i]);
671 eadd(T, X);
672 free_evalue_refs(T);
673 delete T;
675 return X;
678 #ifdef USE_MODULO
679 static void mask(Matrix *f, evalue *factor)
681 int nr = f->NbRows, nc = f->NbColumns;
682 int n;
683 bool found = false;
684 for (n = 0; n < nr && value_notzero_p(f->p[n][nc-1]); ++n)
685 if (value_notone_p(f->p[n][nc-1]) &&
686 value_notmone_p(f->p[n][nc-1]))
687 found = true;
688 if (!found)
689 return;
691 evalue EP;
692 nr = n;
694 for (n = 0; n < nr; ++n) {
695 if (value_one_p(f->p[n][nc-1]) ||
696 value_mone_p(f->p[n][nc-1]))
697 continue;
698 value_init(EP.d);
699 value_set_si(EP.d, 0);
700 EP.x.p = new_enode(relation, 2, 0);
701 value_clear(EP.x.p->arr[1].d);
702 EP.x.p->arr[1] = *factor;
703 evalue *ev = &EP.x.p->arr[0];
704 value_set_si(ev->d, 0);
705 ev->x.p = new_enode(modulo, 3, VALUE_TO_INT(f->p[n][nc-1]));
706 evalue_set_si(&ev->x.p->arr[1], 0, 1);
707 evalue_set_si(&ev->x.p->arr[2], 1, 1);
708 vec_ZZ row;
709 values2zz(f->p[n], row, nc-1);
710 evalue *E = multi_monom(row);
711 value_clear(ev->x.p->arr[0].d);
712 ev->x.p->arr[0] = *E;
713 delete E;
714 *factor = EP;
717 #else
721 static void mask(Matrix *f, evalue *factor)
723 int nr = f->NbRows, nc = f->NbColumns;
724 int n;
725 bool found = false;
726 for (n = 0; n < nr && value_notzero_p(f->p[n][nc-1]); ++n)
727 if (value_notone_p(f->p[n][nc-1]) &&
728 value_notmone_p(f->p[n][nc-1]))
729 found = true;
730 if (!found)
731 return;
733 Value tmp;
734 value_init(tmp);
735 nr = n;
736 unsigned np = nc - 2;
737 Vector *lcm = Vector_Alloc(np);
738 Vector *val = Vector_Alloc(nc);
739 Vector_Set(val->p, 0, nc);
740 value_set_si(val->p[np], 1);
741 Vector_Set(lcm->p, 1, np);
742 for (n = 0; n < nr; ++n) {
743 if (value_one_p(f->p[n][nc-1]) ||
744 value_mone_p(f->p[n][nc-1]))
745 continue;
746 for (int j = 0; j < np; ++j)
747 if (value_notzero_p(f->p[n][j])) {
748 Gcd(f->p[n][j], f->p[n][nc-1], &tmp);
749 value_division(tmp, f->p[n][nc-1], tmp);
750 value_lcm(tmp, lcm->p[j], &lcm->p[j]);
753 evalue EP;
754 value_init(EP.d);
755 mask_r(f, nr, lcm, 0, val, &EP);
756 value_clear(tmp);
757 Vector_Free(val);
758 Vector_Free(lcm);
759 emul(&EP,factor);
760 free_evalue_refs(&EP);
762 #endif
764 struct term_info {
765 evalue *E;
766 ZZ constant;
767 ZZ coeff;
768 int pos;
771 #ifdef USE_MODULO
772 bool mod_needed(Polyhedron *PD, vec_ZZ& num, Value d, evalue *E)
774 bool ret = true;
775 int len = num.length();
776 Matrix *T = Matrix_Alloc(2, len);
777 zz2values(num, T->p[0]);
778 value_set_si(T->p[1][len-1], 1);
779 Polyhedron *I = Polyhedron_Image(PD, T, PD->NbConstraints);
780 Matrix_Free(T);
782 int i;
783 for (i = 0; i < I->NbRays; ++i)
784 if (value_zero_p(I->Ray[i][2])) {
785 Polyhedron_Free(I);
786 return true;
789 Value min, max;
790 value_init(min);
791 value_init(max);
792 for (i = 0; i < I->NbConstraints; ++i) {
793 value_oppose(I->Constraint[i][2], I->Constraint[i][2]);
794 if (value_pos_p(I->Constraint[i][1]))
795 mpz_cdiv_q(min, I->Constraint[i][2], I->Constraint[i][1]);
796 else
797 mpz_fdiv_q(max, I->Constraint[i][2], I->Constraint[i][1]);
799 mpz_fdiv_q(min, min, d);
800 mpz_fdiv_q(max, max, d);
801 if (value_eq(min, max)) {
802 ret = false;
803 value_oppose(min, min);
804 evalue EV;
805 value_init(EV.d);
806 value_set_si(EV.d, 1);
807 value_init(EV.x.n);
808 value_multiply(EV.x.n, min, d);
809 eadd(&EV, E);
810 free_evalue_refs(&EV);
812 value_clear(min);
813 value_clear(max);
814 Polyhedron_Free(I);
815 return ret;
818 void ceil_mod(Value *coef, int len, Value d, ZZ& f, evalue *EP, Polyhedron *PD)
820 Value gcd;
821 value_init(gcd);
822 Value mone;
823 value_init(mone);
824 value_set_si(mone, -1);
826 vec_ZZ num;
828 Vector_Gcd(coef, len, &gcd);
829 Gcd(gcd, d, &gcd);
830 Vector_AntiScale(coef, coef, gcd, len);
831 Vector_Scale(coef, coef, mone, len);
833 value_division(gcd, d, gcd);
834 ZZ g;
835 value2zz(gcd, g);
836 if (value_one_p(gcd))
837 goto out;
839 values2zz(coef, num, len);
841 int j;
842 for (j = 0; j < len; ++j)
843 num[j] = num[j] % g;
844 for (j = 0; j < len; ++j)
845 if (num[j] != 0)
846 break;
847 if (j == len)
848 goto out;
850 evalue tmp;
851 value_init(tmp.d);
852 evalue_set_si(&tmp, 0, 1);
854 if (j < len-1 && num[j] > g/2) {
855 for (int k = j; k < len-1; ++k)
856 if (num[k] != 0)
857 num[k] = g - num[k];
858 num[len-1] = g - 1 - num[len-1];
859 value_assign(tmp.d, gcd);
860 ZZ t = f*(g-1);
861 zz2value(t, tmp.x.n);
862 eadd(&tmp, EP);
863 f = -f;
866 if (j >= len-1) {
867 ZZ t = num[len-1] * f;
868 zz2value(t, tmp.x.n);
869 value_assign(tmp.d, gcd);
870 eadd(&tmp, EP);
871 } else {
872 evalue *E = multi_monom(num);
873 evalue EV;
874 value_init(EV.d);
876 if (PD && !mod_needed(PD, num, gcd, E)) {
877 value_init(EV.x.n);
878 zz2value(f, EV.x.n);
879 value_assign(EV.d, gcd);
880 emul(&EV, E);
881 eadd(E, EP);
882 } else {
883 value_set_si(EV.d, 0);
884 EV.x.p = new_enode(modulo, 3, VALUE_TO_INT(gcd));
885 evalue_copy(&EV.x.p->arr[0], E);
886 evalue_set_si(&EV.x.p->arr[1], 0, 1);
887 value_init(EV.x.p->arr[2].x.n);
888 zz2value(f, EV.x.p->arr[2].x.n);
889 value_assign(EV.x.p->arr[2].d, gcd);
891 eadd(&EV, EP);
894 free_evalue_refs(&EV);
895 free_evalue_refs(E);
896 delete E;
899 free_evalue_refs(&tmp);
901 out:
902 value_clear(gcd);
903 value_clear(mone);
906 evalue* ceil3(Value *coef, int len, Value d)
908 Vector *val = Vector_Alloc(len);
910 Value mone;
911 value_init(mone);
912 value_set_si(mone, -1);
913 value_absolute(d, d);
914 Vector_Scale(coef, val->p, mone, len);
915 value_clear(mone);
917 vec_ZZ num;
918 values2zz(val->p, num, len);
919 evalue *EP = multi_monom(num);
921 evalue tmp;
922 value_init(tmp.d);
923 value_init(tmp.x.n);
924 value_set_si(tmp.x.n, 1);
925 value_assign(tmp.d, d);
927 emul(&tmp, EP);
929 ZZ one;
930 one = 1;
931 ceil_mod(val->p, len, d, one, EP, NULL);
933 /* copy EP to malloc'ed evalue */
934 evalue *E;
935 ALLOC(E);
936 *E = *EP;
937 delete EP;
939 free_evalue_refs(&tmp);
941 return E;
944 evalue* lattice_point(
945 Polyhedron *i, vec_ZZ& lambda, Matrix *W, Value lcm, Polyhedron *PD)
947 unsigned nparam = W->NbColumns - 1;
949 Matrix* Rays = rays2(i);
950 Matrix *T = Transpose(Rays);
951 Matrix *T2 = Matrix_Copy(T);
952 Matrix *inv = Matrix_Alloc(T2->NbRows, T2->NbColumns);
953 int ok = Matrix_Inverse(T2, inv);
954 assert(ok);
955 Matrix_Free(Rays);
956 Matrix_Free(T2);
957 mat_ZZ vertex;
958 matrix2zz(W, vertex, W->NbRows, W->NbColumns);
960 vec_ZZ num;
961 num = lambda * vertex;
963 evalue *EP = multi_monom(num);
965 evalue tmp;
966 value_init(tmp.d);
967 value_init(tmp.x.n);
968 value_set_si(tmp.x.n, 1);
969 value_assign(tmp.d, lcm);
971 emul(&tmp, EP);
973 Matrix *L = Matrix_Alloc(inv->NbRows, W->NbColumns);
974 Matrix_Product(inv, W, L);
976 mat_ZZ RT;
977 matrix2zz(T, RT, T->NbRows, T->NbColumns);
978 Matrix_Free(T);
980 vec_ZZ p = lambda * RT;
982 for (int i = 0; i < L->NbRows; ++i) {
983 ceil_mod(L->p[i], nparam+1, lcm, p[i], EP, PD);
986 Matrix_Free(L);
988 Matrix_Free(inv);
989 free_evalue_refs(&tmp);
990 return EP;
992 #else
993 evalue* lattice_point(
994 Polyhedron *i, vec_ZZ& lambda, Matrix *W, Value lcm, Polyhedron *PD)
996 Matrix *T = Transpose(W);
997 unsigned nparam = T->NbRows - 1;
999 evalue *EP = new evalue();
1000 value_init(EP->d);
1001 evalue_set_si(EP, 0, 1);
1003 evalue ev;
1004 Vector *val = Vector_Alloc(nparam+1);
1005 value_set_si(val->p[nparam], 1);
1006 ZZ offset(INIT_VAL, 0);
1007 value_init(ev.d);
1008 vertex_period(i, lambda, T, lcm, 0, val, EP, &ev, offset);
1009 Vector_Free(val);
1010 eadd(&ev, EP);
1011 free_evalue_refs(&ev);
1013 Matrix_Free(T);
1015 reduce_evalue(EP);
1017 return EP;
1019 #endif
1021 void lattice_point(
1022 Param_Vertices* V, Polyhedron *i, vec_ZZ& lambda, term_info* term,
1023 Polyhedron *PD)
1025 unsigned nparam = V->Vertex->NbColumns - 2;
1026 unsigned dim = i->Dimension;
1027 mat_ZZ vertex;
1028 vertex.SetDims(V->Vertex->NbRows, nparam+1);
1029 Value lcm, tmp;
1030 value_init(lcm);
1031 value_init(tmp);
1032 value_set_si(lcm, 1);
1033 for (int j = 0; j < V->Vertex->NbRows; ++j) {
1034 value_lcm(lcm, V->Vertex->p[j][nparam+1], &lcm);
1036 if (value_notone_p(lcm)) {
1037 Matrix * mv = Matrix_Alloc(dim, nparam+1);
1038 for (int j = 0 ; j < dim; ++j) {
1039 value_division(tmp, lcm, V->Vertex->p[j][nparam+1]);
1040 Vector_Scale(V->Vertex->p[j], mv->p[j], tmp, nparam+1);
1043 term->E = lattice_point(i, lambda, mv, lcm, PD);
1044 term->constant = 0;
1046 Matrix_Free(mv);
1047 value_clear(lcm);
1048 value_clear(tmp);
1049 return;
1051 for (int i = 0; i < V->Vertex->NbRows; ++i) {
1052 assert(value_one_p(V->Vertex->p[i][nparam+1])); // for now
1053 values2zz(V->Vertex->p[i], vertex[i], nparam+1);
1056 vec_ZZ num;
1057 num = lambda * vertex;
1059 int p = -1;
1060 int nn = 0;
1061 for (int j = 0; j < nparam; ++j)
1062 if (num[j] != 0) {
1063 ++nn;
1064 p = j;
1066 if (nn >= 2) {
1067 term->E = multi_monom(num);
1068 term->constant = 0;
1069 } else {
1070 term->E = NULL;
1071 term->constant = num[nparam];
1072 term->pos = p;
1073 if (p != -1)
1074 term->coeff = num[p];
1077 value_clear(lcm);
1078 value_clear(tmp);
1081 void normalize(Polyhedron *i, vec_ZZ& lambda, ZZ& sign, ZZ& num, vec_ZZ& den)
1083 unsigned dim = i->Dimension;
1085 int r = 0;
1086 mat_ZZ rays;
1087 rays.SetDims(dim, dim);
1088 add_rays(rays, i, &r);
1089 den = rays * lambda;
1090 int change = 0;
1092 for (int j = 0; j < den.length(); ++j) {
1093 if (den[j] > 0)
1094 change ^= 1;
1095 else {
1096 den[j] = abs(den[j]);
1097 num += den[j];
1100 if (change)
1101 sign = -sign;
1104 void barvinok_count(Polyhedron *P, Value* result, unsigned NbMaxCons)
1106 Polyhedron ** vcone;
1107 vec_ZZ sign;
1108 int ncone = 0;
1109 sign.SetLength(ncone);
1110 unsigned dim;
1111 int allocated = 0;
1112 Value factor;
1113 Polyhedron *Q;
1114 int r = 0;
1116 if (emptyQ(P)) {
1117 value_set_si(*result, 0);
1118 return;
1120 if (P->NbBid == 0)
1121 for (; r < P->NbRays; ++r)
1122 if (value_zero_p(P->Ray[r][P->Dimension+1]))
1123 break;
1124 if (P->NbBid !=0 || r < P->NbRays) {
1125 value_set_si(*result, -1);
1126 return;
1128 if (P->NbEq != 0) {
1129 P = remove_equalities(P);
1130 if (emptyQ(P)) {
1131 Polyhedron_Free(P);
1132 value_set_si(*result, 0);
1133 return;
1135 allocated = 1;
1137 value_init(factor);
1138 value_set_si(factor, 1);
1139 Q = Polyhedron_Reduce(P, &factor);
1140 if (Q) {
1141 if (allocated)
1142 Polyhedron_Free(P);
1143 P = Q;
1144 allocated = 1;
1146 if (P->Dimension == 0) {
1147 value_assign(*result, factor);
1148 if (allocated)
1149 Polyhedron_Free(P);
1150 value_clear(factor);
1151 return;
1154 dim = P->Dimension;
1155 vcone = new (Polyhedron *)[P->NbRays];
1157 for (int j = 0; j < P->NbRays; ++j) {
1158 int npos, nneg;
1159 Polyhedron *C = supporting_cone(P, j);
1160 decompose(C, &vcone[j], &npos, &nneg, NbMaxCons);
1161 ncone += npos + nneg;
1162 sign.SetLength(ncone);
1163 for (int k = 0; k < npos; ++k)
1164 sign[ncone-nneg-k-1] = 1;
1165 for (int k = 0; k < nneg; ++k)
1166 sign[ncone-k-1] = -1;
1169 mat_ZZ rays;
1170 rays.SetDims(ncone * dim, dim);
1171 r = 0;
1172 for (int j = 0; j < P->NbRays; ++j) {
1173 for (Polyhedron *i = vcone[j]; i; i = i->next) {
1174 assert(i->NbRays-1 == dim);
1175 add_rays(rays, i, &r);
1178 vec_ZZ lambda;
1179 nonorthog(rays, lambda);
1181 vec_ZZ num;
1182 mat_ZZ den;
1183 num.SetLength(ncone);
1184 den.SetDims(ncone,dim);
1186 int f = 0;
1187 for (int j = 0; j < P->NbRays; ++j) {
1188 for (Polyhedron *i = vcone[j]; i; i = i->next) {
1189 lattice_point(P->Ray[j]+1, i, lambda, num[f]);
1190 normalize(i, lambda, sign[f], num[f], den[f]);
1191 ++f;
1194 ZZ min = num[0];
1195 for (int j = 1; j < num.length(); ++j)
1196 if (num[j] < min)
1197 min = num[j];
1198 for (int j = 0; j < num.length(); ++j)
1199 num[j] -= min;
1201 f = 0;
1202 mpq_t count;
1203 mpq_init(count);
1204 for (int j = 0; j < P->NbRays; ++j) {
1205 for (Polyhedron *i = vcone[j]; i; i = i->next) {
1206 dpoly d(dim, num[f]);
1207 dpoly n(dim, den[f][0], 1);
1208 for (int k = 1; k < dim; ++k) {
1209 dpoly fact(dim, den[f][k], 1);
1210 n *= fact;
1212 d.div(n, count, sign[f]);
1213 ++f;
1216 assert(value_one_p(&count[0]._mp_den));
1217 value_multiply(*result, &count[0]._mp_num, factor);
1218 mpq_clear(count);
1220 for (int j = 0; j < P->NbRays; ++j)
1221 Domain_Free(vcone[j]);
1223 delete [] vcone;
1225 if (allocated)
1226 Polyhedron_Free(P);
1227 value_clear(factor);
1230 static void uni_polynom(int param, Vector *c, evalue *EP)
1232 unsigned dim = c->Size-2;
1233 value_init(EP->d);
1234 value_set_si(EP->d,0);
1235 EP->x.p = new_enode(polynomial, dim+1, param+1);
1236 for (int j = 0; j <= dim; ++j)
1237 evalue_set(&EP->x.p->arr[j], c->p[j], c->p[dim+1]);
1240 static void multi_polynom(Vector *c, evalue* X, evalue *EP)
1242 unsigned dim = c->Size-2;
1243 evalue EC;
1245 value_init(EC.d);
1246 evalue_set(&EC, c->p[dim], c->p[dim+1]);
1248 value_init(EP->d);
1249 evalue_set(EP, c->p[dim], c->p[dim+1]);
1251 for (int i = dim-1; i >= 0; --i) {
1252 emul(X, EP);
1253 value_assign(EC.x.n, c->p[i]);
1254 eadd(&EC, EP);
1256 free_evalue_refs(&EC);
1260 evalue* barvinok_enumerate_ev(Polyhedron *P, Polyhedron* C, unsigned MaxRays)
1262 Polyhedron *CEq = NULL, *rVD, *pVD, *CA;
1263 Matrix *CT = NULL;
1264 Param_Polyhedron *PP = NULL;
1265 Param_Domain *D, *next;
1266 Param_Vertices *V;
1267 int r = 0;
1268 unsigned nparam = C->Dimension;
1269 evalue *eres = new evalue;
1270 value_init(eres->d);
1271 value_set_si(eres->d, 0);
1273 evalue factor;
1274 value_init(factor.d);
1275 evalue_set_si(&factor, 1, 1);
1277 CA = align_context(C, P->Dimension, MaxRays);
1278 P = DomainIntersection(P, CA, MaxRays);
1279 Polyhedron_Free(CA);
1281 if (C->Dimension == 0 || emptyQ(P)) {
1282 constant:
1283 eres->x.p = new_enode(partition, 2, -1);
1284 EVALUE_SET_DOMAIN(eres->x.p->arr[0], CEq ? CEq : Polyhedron_Copy(C));
1285 value_set_si(eres->x.p->arr[1].d, 1);
1286 value_init(eres->x.p->arr[1].x.n);
1287 if (emptyQ(P))
1288 value_set_si(eres->x.p->arr[1].x.n, 0);
1289 else
1290 barvinok_count(P, &eres->x.p->arr[1].x.n, MaxRays);
1291 emul(&factor, &eres->x.p->arr[1]);
1292 out:
1293 free_evalue_refs(&factor);
1294 Polyhedron_Free(P);
1295 if (CT)
1296 Matrix_Free(CT);
1297 if (PP)
1298 Param_Polyhedron_Free(PP);
1300 return eres;
1303 if (P->NbEq != 0) {
1304 Matrix *f;
1305 P = remove_equalities_p(P, P->Dimension-nparam, &f);
1306 mask(f, &factor);
1307 Matrix_Free(f);
1308 if (P->Dimension == nparam) {
1309 CEq = P;
1310 P = Universe_Polyhedron(0);
1311 goto constant;
1315 #ifdef USE_MODULO
1316 Polyhedron *Q = ParamPolyhedron_Reduce(P, P->Dimension-nparam, &factor);
1317 if (Q) {
1318 if (Q->Dimension == nparam) {
1319 CEq = Q;
1320 P = Universe_Polyhedron(0);
1321 goto constant;
1323 Polyhedron_Free(P);
1324 P = Q;
1326 #endif
1327 Polyhedron *oldP = P;
1328 PP = Polyhedron2Param_SimplifiedDomain(&P,C,MaxRays,&CEq,&CT);
1329 if (P != oldP)
1330 Polyhedron_Free(oldP);
1332 if (isIdentity(CT)) {
1333 Matrix_Free(CT);
1334 CT = NULL;
1335 } else {
1336 assert(CT->NbRows != CT->NbColumns);
1337 if (CT->NbRows == 1) // no more parameters
1338 goto constant;
1339 nparam = CT->NbRows - 1;
1342 unsigned dim = P->Dimension - nparam;
1343 Polyhedron ** vcone = new (Polyhedron *)[PP->nbV];
1344 int * npos = new int[PP->nbV];
1345 int * nneg = new int[PP->nbV];
1346 vec_ZZ sign;
1348 int i;
1349 for (i = 0, V = PP->V; V; ++i, V = V->next) {
1350 Polyhedron *C = supporting_cone_p(P, V);
1351 decompose(C, &vcone[i], &npos[i], &nneg[i], MaxRays);
1354 Vector *c = Vector_Alloc(dim+2);
1356 int nd;
1357 for (nd = 0, D=PP->D; D; ++nd, D=D->next);
1358 struct section { Polyhedron * D; evalue E; };
1359 section *s = new section[nd];
1361 for(nd = 0, D=PP->D; D; D=next) {
1362 next = D->next;
1363 if (!CEq) {
1364 pVD = rVD = D->Domain;
1365 D->Domain = NULL;
1366 } else {
1367 Polyhedron *Dt;
1368 Dt = CT ? Polyhedron_Preimage(D->Domain,CT,MaxRays) : D->Domain;
1369 rVD = DomainIntersection(Dt,CEq,MaxRays);
1371 /* if rVD is empty or too small in geometric dimension */
1372 if(!rVD || emptyQ(rVD) ||
1373 (rVD->Dimension-rVD->NbEq < Dt->Dimension-Dt->NbEq-CEq->NbEq)) {
1374 if(rVD)
1375 Polyhedron_Free(rVD);
1376 if (CT)
1377 Polyhedron_Free(Dt);
1378 continue; /* empty validity domain */
1380 if (CT)
1381 Polyhedron_Free(Dt);
1382 pVD = CT ? Polyhedron_Image(rVD,CT,MaxRays) : rVD;
1384 int ncone = 0;
1385 sign.SetLength(ncone);
1386 FORALL_PVertex_in_ParamPolyhedron(V,D,PP) // _i is internal counter
1387 ncone += npos[_i] + nneg[_i];
1388 sign.SetLength(ncone);
1389 for (int k = 0; k < npos[_i]; ++k)
1390 sign[ncone-nneg[_i]-k-1] = 1;
1391 for (int k = 0; k < nneg[_i]; ++k)
1392 sign[ncone-k-1] = -1;
1393 END_FORALL_PVertex_in_ParamPolyhedron;
1395 mat_ZZ rays;
1396 rays.SetDims(ncone * dim, dim);
1397 r = 0;
1398 FORALL_PVertex_in_ParamPolyhedron(V,D,PP) // _i is internal counter
1399 for (Polyhedron *i = vcone[_i]; i; i = i->next) {
1400 assert(i->NbRays-1 == dim);
1401 add_rays(rays, i, &r);
1403 END_FORALL_PVertex_in_ParamPolyhedron;
1404 vec_ZZ lambda;
1405 nonorthog(rays, lambda);
1407 mat_ZZ den;
1408 den.SetDims(ncone,dim);
1409 term_info *num = new term_info[ncone];
1411 int f = 0;
1412 FORALL_PVertex_in_ParamPolyhedron(V,D,PP)
1413 for (Polyhedron *i = vcone[_i]; i; i = i->next) {
1414 lattice_point(V, i, lambda, &num[f], pVD);
1415 normalize(i, lambda, sign[f], num[f].constant, den[f]);
1416 ++f;
1418 END_FORALL_PVertex_in_ParamPolyhedron;
1419 ZZ min = num[0].constant;
1420 for (int j = 1; j < ncone; ++j)
1421 if (num[j].constant < min)
1422 min = num[j].constant;
1423 for (int j = 0; j < ncone; ++j)
1424 num[j].constant -= min;
1425 f = 0;
1426 value_init(s[nd].E.d);
1427 evalue_set_si(&s[nd].E, 0, 1);
1428 mpq_t count;
1429 mpq_init(count);
1430 FORALL_PVertex_in_ParamPolyhedron(V,D,PP)
1431 for (Polyhedron *i = vcone[_i]; i; i = i->next) {
1432 dpoly n(dim, den[f][0], 1);
1433 for (int k = 1; k < dim; ++k) {
1434 dpoly fact(dim, den[f][k], 1);
1435 n *= fact;
1437 if (num[f].E != NULL) {
1438 ZZ one(INIT_VAL, 1);
1439 dpoly_n d(dim, num[f].constant, one);
1440 d.div(n, c, sign[f]);
1441 evalue EV;
1442 multi_polynom(c, num[f].E, &EV);
1443 eadd(&EV , &s[nd].E);
1444 free_evalue_refs(&EV);
1445 free_evalue_refs(num[f].E);
1446 delete num[f].E;
1447 } else if (num[f].pos != -1) {
1448 dpoly_n d(dim, num[f].constant, num[f].coeff);
1449 d.div(n, c, sign[f]);
1450 evalue EV;
1451 uni_polynom(num[f].pos, c, &EV);
1452 eadd(&EV , &s[nd].E);
1453 free_evalue_refs(&EV);
1454 } else {
1455 mpq_set_si(count, 0, 1);
1456 dpoly d(dim, num[f].constant);
1457 d.div(n, count, sign[f]);
1458 evalue EV;
1459 value_init(EV.d);
1460 evalue_set(&EV, &count[0]._mp_num, &count[0]._mp_den);
1461 eadd(&EV , &s[nd].E);
1462 free_evalue_refs(&EV);
1464 ++f;
1466 END_FORALL_PVertex_in_ParamPolyhedron;
1468 mpq_clear(count);
1469 delete [] num;
1471 if (CT)
1472 addeliminatedparams_evalue(&s[nd].E, CT);
1473 emul(&factor, &s[nd].E);
1474 reduce_evalue(&s[nd].E);
1475 s[nd].D = rVD;
1476 ++nd;
1477 if (rVD != pVD)
1478 Polyhedron_Free(pVD);
1481 eres->x.p = new_enode(partition, 2*nd, -1);
1482 for (int j = 0; j < nd; ++j) {
1483 EVALUE_SET_DOMAIN(eres->x.p->arr[2*j], s[j].D);
1484 eres->x.p->arr[2*j+1] = s[j].E;
1486 delete [] s;
1488 Vector_Free(c);
1490 for (int j = 0; j < PP->nbV; ++j)
1491 Domain_Free(vcone[j]);
1492 delete [] vcone;
1493 delete [] npos;
1494 delete [] nneg;
1496 if (CEq)
1497 Polyhedron_Free(CEq);
1499 goto out;
1502 Enumeration* barvinok_enumerate(Polyhedron *P, Polyhedron* C, unsigned MaxRays)
1504 Enumeration *en, *res = NULL;
1505 evalue *EP = barvinok_enumerate_ev(P, C, MaxRays);
1506 for (int i = 0; i < EP->x.p->size/2; ++i) {
1507 en = (Enumeration *)malloc(sizeof(Enumeration));
1508 en->next = res;
1509 res = en;
1510 res->ValidityDomain = EVALUE_DOMAIN(EP->x.p->arr[2*i]);
1511 res->EP = EP->x.p->arr[2*i+1];
1513 free(EP->x.p);
1514 value_clear(EP->d);
1515 delete EP;
1516 return res;
1519 enum constraint {
1520 ALL_POS = 1 << 0,
1521 ONE_NEG = 1 << 1,
1522 INDEPENDENT = 1 << 2,
1525 evalue* barvinok_enumerate_e(Polyhedron *P,
1526 unsigned exist, unsigned nparam, unsigned MaxRays)
1528 if (exist == 0) {
1529 Polyhedron *U = Universe_Polyhedron(nparam);
1530 evalue *EP = barvinok_enumerate_ev(P, U, MaxRays);
1531 //char *param_name[] = {"P", "Q", "R", "S", "T" };
1532 //print_evalue(stdout, EP, param_name);
1533 Polyhedron_Free(U);
1534 return EP;
1537 assert(P->NbEq == 0); // for now
1539 int nvar = P->Dimension - exist - nparam;
1540 int len = P->Dimension + 2;
1542 //printf("%d %d %d\n", nvar, exist, nparam);
1544 Vector *row = Vector_Alloc(len);
1545 value_set_si(row->p[0], 1);
1547 Value f;
1548 value_init(f);
1550 enum constraint info[exist];
1551 for (int i = 0; i < exist; ++i) {
1552 info[i] = ALL_POS;
1553 for (int l = 0; l < P->NbConstraints; ++l) {
1554 if (value_negz_p(P->Constraint[l][nvar+i+1]))
1555 continue;
1556 for (int u = 0; u < P->NbConstraints; ++u) {
1557 if (value_posz_p(P->Constraint[u][nvar+i+1]))
1558 continue;
1559 value_oppose(f, P->Constraint[u][nvar+i+1]);
1560 Vector_Combine(P->Constraint[l]+1, P->Constraint[u]+1, row->p+1,
1561 f, P->Constraint[l][nvar+i+1], len-1);
1562 if (!(info[i] & INDEPENDENT)) {
1563 int j;
1564 for (j = 0; j < exist; ++j)
1565 if (j != i && value_notzero_p(row->p[nvar+j+1]))
1566 break;
1567 if (j == exist)
1568 info[i] = (constraint)(info[i] | INDEPENDENT);
1570 if (info[i] & ALL_POS) {
1571 value_addto(row->p[len-1], row->p[len-1],
1572 P->Constraint[l][nvar+i+1]);
1573 value_addto(row->p[len-1], row->p[len-1], f);
1574 value_multiply(f, f, P->Constraint[l][nvar+i+1]);
1575 value_substract(row->p[len-1], row->p[len-1], f);
1576 value_decrement(row->p[len-1], row->p[len-1]);
1577 Vector_Gcd(row->p+1, len - 2, &f);
1578 if (value_notone_p(f)) {
1579 Vector_AntiScale(row->p+1, row->p+1, f, len-2);
1580 mpz_fdiv_r(row->p[len-1], row->p[len-1], f);
1582 value_set_si(f, -1);
1583 Vector_Scale(row->p+1, row->p+1, f, len-1);
1584 value_decrement(row->p[len-1], row->p[len-1]);
1585 Polyhedron *T = AddConstraints(row->p, 1, P, MaxRays);
1586 if (!emptyQ(T))
1587 info[i] = (constraint)(info[i] ^ ALL_POS);
1588 //puts("pos remainder");
1589 //Polyhedron_Print(stdout, P_VALUE_FMT, T);
1590 Polyhedron_Free(T);
1592 if (!(info[i] & ONE_NEG)) {
1593 /* recalculate constant */
1594 value_oppose(f, P->Constraint[u][nvar+i+1]);
1595 Vector_Combine(P->Constraint[l]+len-2,
1596 P->Constraint[u]+1, row->p+len-2,
1597 f, P->Constraint[l][nvar+i+1], 1);
1598 value_multiply(f, f, P->Constraint[l][nvar+i+1]);
1599 value_substract(row->p[len-1], row->p[len-1], f);
1600 value_set_si(f, -1);
1601 Vector_Scale(row->p+1, row->p+1, f, len-1);
1602 value_decrement(row->p[len-1], row->p[len-1]);
1603 Vector_Gcd(row->p+1, len - 2, &f);
1604 if (value_notone_p(f)) {
1605 Vector_AntiScale(row->p+1, row->p+1, f, len-2);
1606 mpz_fdiv_r(row->p[len-1], row->p[len-1], f);
1608 value_set_si(f, -1);
1609 Vector_Scale(row->p+1, row->p+1, f, len-1);
1610 value_decrement(row->p[len-1], row->p[len-1]);
1611 //puts("row");
1612 //Vector_Print(stdout, P_VALUE_FMT, row);
1613 Polyhedron *T = AddConstraints(row->p, 1, P, MaxRays);
1614 if (emptyQ(T))
1615 info[i] = (constraint)(info[i] | ONE_NEG);
1616 //puts("neg remainder");
1617 //Polyhedron_Print(stdout, P_VALUE_FMT, T);
1618 Polyhedron_Free(T);
1620 if (!(info[i] & ALL_POS) && (info[i] & ONE_NEG))
1621 goto next;
1624 if (info[i] & ALL_POS)
1625 break;
1626 next:
1630 for (int i = 0; i < exist; ++i)
1631 if (info[i] & ALL_POS) {
1632 // Eliminate
1633 assert(!"IMPLEMENTED");
1635 for (int i = 0; i < exist; ++i)
1636 if (info[i] & ONE_NEG) {
1637 assert(i == 0); // for now
1638 value_clear(f);
1639 return barvinok_enumerate_e(P, exist-1, nparam, MaxRays);
1641 for (int i = 0; i < exist; ++i)
1642 if (info[i] & INDEPENDENT) {
1643 /* Find constraint again and split off negative part */
1645 for (int l = 0; l < P->NbConstraints; ++l) {
1646 if (value_negz_p(P->Constraint[l][nvar+i+1]))
1647 continue;
1648 for (int u = 0; u < P->NbConstraints; ++u) {
1649 if (value_posz_p(P->Constraint[u][nvar+i+1]))
1650 continue;
1651 value_oppose(f, P->Constraint[u][nvar+i+1]);
1652 Vector_Combine(P->Constraint[l]+1, P->Constraint[u]+1,
1653 row->p+1,
1654 f, P->Constraint[l][nvar+i+1], len-1);
1656 int j;
1657 for (j = 0; j < exist; ++j)
1658 if (j != i && value_notzero_p(row->p[nvar+j+1]))
1659 break;
1660 if (j != exist)
1661 continue;
1663 //printf("l: %d, u: %d\n", l, u);
1664 value_multiply(f, f, P->Constraint[l][nvar+i+1]);
1665 value_substract(row->p[len-1], row->p[len-1], f);
1666 value_set_si(f, -1);
1667 Vector_Scale(row->p+1, row->p+1, f, len-1);
1668 value_decrement(row->p[len-1], row->p[len-1]);
1669 Vector_Gcd(row->p+1, len - 2, &f);
1670 if (value_notone_p(f)) {
1671 Vector_AntiScale(row->p+1, row->p+1, f, len-2);
1672 mpz_fdiv_r(row->p[len-1], row->p[len-1], f);
1674 Polyhedron *neg = AddConstraints(row->p, 1, P, MaxRays);
1675 value_set_si(f, -1);
1676 Vector_Scale(row->p+1, row->p+1, f, len-1);
1677 value_decrement(row->p[len-1], row->p[len-1]);
1678 Polyhedron *pos = AddConstraints(row->p, 1, P, MaxRays);
1680 assert(i == 0); // for now
1681 evalue *EP =
1682 barvinok_enumerate_e(neg, exist-1, nparam, MaxRays);
1683 evalue *E =
1684 barvinok_enumerate_e(pos, exist, nparam, MaxRays);
1685 eadd(E, EP);
1686 free_evalue_refs(E);
1687 free(E);
1688 Polyhedron_Free(neg);
1689 Polyhedron_Free(pos);
1690 value_clear(f);
1691 return EP;
1694 assert(0); // can't happen
1697 assert(0);