3 #include <barvinok/barvinok.h>
4 #include <barvinok/set.h>
5 #include <barvinok/options.h>
6 #include <barvinok/evalue.h>
7 #include <barvinok/util.h>
8 #include "conversion.h"
9 #include "evalue_read.h"
11 #include "lattice_point.h"
13 #include "bernoulli.h"
18 #include "matrix_read.h"
19 #include "remove_equalities.h"
27 void set_from_string(T
& v
, const char *s
)
29 std::istringstream
str(s
);
33 static Matrix
*matrix_read_from_str(const char *s
)
35 std::istringstream
str(s
);
36 return Matrix_Read(str
);
39 static int test_equalities(struct barvinok_options
*options
)
41 Matrix
*M
= matrix_read_from_str(
43 " 0 23 0 0 -10 0 0 0 7 -44 -8 \n"
44 " 0 0 23 0 5 0 0 0 -15 114 27 \n"
45 " 0 0 0 1 0 0 0 0 0 -1 2 \n"
46 " 0 0 0 0 0 1 0 0 -1 8 0 \n"
47 " 0 0 0 0 0 0 1 0 0 -1 2 \n"
48 " 0 0 0 0 0 0 0 1 0 -1 -1 \n"
49 " 1 0 0 0 10 0 0 0 -7 44 8 \n"
50 " 1 0 0 0 -5 0 0 0 15 -114 -27 \n"
51 " 1 0 0 0 1 0 0 0 0 0 0 \n"
52 " 1 0 0 0 0 0 0 0 1 -8 0 \n"
53 " 1 0 0 0 0 0 0 0 0 1 -2 \n");
54 Polyhedron
*P
= Constraints2Polyhedron(M
, options
->MaxRays
);
57 remove_all_equalities(&P
, NULL
, NULL
, NULL
, 2, options
->MaxRays
);
64 int test_evalue_read(struct barvinok_options
*options
)
66 unsigned nvar
, nparam
;
67 const char **all_vars
;
70 e1
= evalue_read_from_str("(1 * aa + 2 * a)",
71 NULL
, &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
72 Free_ParamNames(all_vars
, nvar
+nparam
);
73 e2
= evalue_read_from_str("(3 * aa)",
74 NULL
, &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
75 Free_ParamNames(all_vars
, nvar
+nparam
);
76 assert(!eequal(e1
, e2
));
81 static void evalue_check_disjoint(evalue
*e
)
87 if (EVALUE_IS_ZERO(*e
))
89 for (i
= 0; i
< e
->x
.p
->size
/2; ++i
) {
90 Polyhedron
*A
= EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]);
91 for (j
= i
+1; j
< e
->x
.p
->size
/2; ++j
) {
92 Polyhedron
*B
= EVALUE_DOMAIN(e
->x
.p
->arr
[2*j
]);
93 Polyhedron
*I
= DomainIntersection(A
, B
, 0);
100 static int test_eadd(struct barvinok_options
*options
)
102 unsigned nvar
, nparam
;
103 const char **all_vars
;
106 e1
= evalue_read_from_str(" d -1 = 0\n"
111 "d,h", &all_vars
, &nvar
, &nparam
,
113 Free_ParamNames(all_vars
, nvar
+nparam
);
114 e2
= evalue_read_from_str(
126 "d,h", &all_vars
, &nvar
, &nparam
,
128 Free_ParamNames(all_vars
, nvar
+nparam
);
130 evalue_check_disjoint(e1
);
135 int test_evalue(struct barvinok_options
*options
)
137 unsigned nvar
, nparam
;
138 const char **all_vars
;
139 evalue
*poly1
, poly2
;
141 poly1
= evalue_read_from_str("(1/4 * n^4 + 1/2 * n^3 + 1/4 * n^2)",
142 NULL
, &all_vars
, &nvar
, &nparam
,
144 Free_ParamNames(all_vars
, nvar
+nparam
);
147 evalue_copy(&poly2
, poly1
);
148 evalue_negate(poly1
);
150 reduce_evalue(poly1
);
151 assert(EVALUE_IS_ZERO(*poly1
));
153 free_evalue_refs(&poly2
);
156 int test_substitute(struct barvinok_options
*options
)
158 unsigned nvar
, nparam
;
159 const char **all_vars
;
160 const char *vars
= "a,b";
164 e1
= evalue_read_from_str("[ { 1/3 * a } = 0 ] * \n"
165 " ([ { 1/5 * b + 2/5 } = 0 ] * 5) + \n"
166 "[ { 1/3 * a } != 0 ] * 42",
167 vars
, &all_vars
, &nvar
, &nparam
,
169 Free_ParamNames(all_vars
, nvar
+nparam
);
171 subs
[0] = evalue_read_from_str("(2 * b + 5)",
172 vars
, &all_vars
, &nvar
, &nparam
,
174 Free_ParamNames(all_vars
, nvar
+nparam
);
175 subs
[1] = evalue_read_from_str("(a + 1)",
176 vars
, &all_vars
, &nvar
, &nparam
,
178 Free_ParamNames(all_vars
, nvar
+nparam
);
180 evalue_substitute(e1
, subs
);
181 evalue_free(subs
[0]);
182 evalue_free(subs
[1]);
185 e2
= evalue_read_from_str("[ { 2/3 * b + 2/3 } = 0 ] * \n"
186 " ([ { 1/5 * a + 3/5 } = 0 ] * 5) + \n"
187 "[ { 2/3 * b + 2/3 } != 0 ] * 42",
188 vars
, &all_vars
, &nvar
, &nparam
,
190 Free_ParamNames(all_vars
, nvar
+nparam
);
193 assert(eequal(e1
, e2
));
199 int test_split_periods(struct barvinok_options
*options
)
201 unsigned nvar
, nparam
;
202 const char **all_vars
;
205 e
= evalue_read_from_str("U + 2V + 3 >= 0\n- U -2V >= 0\n- U 10 >= 0\n"
206 "U >= 0\n\n({( 1/3 * U + ( 2/3 * V + 0 ))})",
207 NULL
, &all_vars
, &nvar
, &nparam
,
209 Free_ParamNames(all_vars
, nvar
+nparam
);
211 evalue_split_periods(e
, 2, options
->MaxRays
);
212 assert(value_zero_p(e
->d
));
213 assert(e
->x
.p
->type
== partition
);
214 assert(e
->x
.p
->size
== 4);
215 assert(value_zero_p(e
->x
.p
->arr
[1].d
));
216 assert(e
->x
.p
->arr
[1].x
.p
->type
== polynomial
);
217 assert(value_zero_p(e
->x
.p
->arr
[3].d
));
218 assert(e
->x
.p
->arr
[3].x
.p
->type
== polynomial
);
222 int test_specialization(struct barvinok_options
*options
)
231 assert(value_cmp_si(n
.coeff
->p
[0], 1) == 0);
232 assert(value_cmp_si(n
.coeff
->p
[1], 5) == 0);
233 assert(value_cmp_si(n
.coeff
->p
[2], 10) == 0);
240 assert(value_cmp_si(d
.coeff
->p
[0], 2) == 0);
241 assert(value_cmp_si(d
.coeff
->p
[1], 1) == 0);
242 assert(value_cmp_si(d
.coeff
->p
[2], 0) == 0);
245 mpq_canonicalize(count
);
246 assert(value_cmp_si(mpq_numref(count
), 31) == 0);
247 assert(value_cmp_si(mpq_denref(count
), 8) == 0);
251 assert(value_cmp_si(n2
.coeff
->p
[0], 1) == 0);
252 assert(value_cmp_si(n2
.coeff
->p
[1], -2) == 0);
253 assert(value_cmp_si(n2
.coeff
->p
[2], 3) == 0);
256 mpq_canonicalize(count
);
257 assert(value_cmp_si(mpq_numref(count
), 6) == 0);
258 assert(value_cmp_si(mpq_denref(count
), 1) == 0);
264 int test_lattice_points(struct barvinok_options
*options
)
268 set_from_string(tmp
, "[[0 0 0 0 4][0 0 0 0 4][-1 0 1 0 4]]");
269 V
.Vertex
= zz2matrix(tmp
);
271 set_from_string(lambda
, "[3 5 7]");
273 set_from_string(rays
, "[[0 1 0][4 0 1][0 0 -1]]");
277 unsigned nvar
, nparam
;
278 const char **all_vars
;
279 point
[0] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
280 "( 7 * {( 1/4 * a + ( 3/4 * c + 3/4 ) ) } + -21/4 ) ) )",
281 "a,b,c", &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
282 Free_ParamNames(all_vars
, nvar
+nparam
);
283 point
[1] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
284 "( 7 * {( 1/4 * a + ( 3/4 * c + 1/2 ) ) } + -1/2 ) ) )",
285 "a,b,c", &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
286 Free_ParamNames(all_vars
, nvar
+nparam
);
287 point
[2] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
288 "( 7 * {( 1/4 * a + ( 3/4 * c + 1/4 ) ) } + 17/4 ) ) )",
289 "a,b,c", &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
290 Free_ParamNames(all_vars
, nvar
+nparam
);
291 point
[3] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
292 "( 7 * {( 1/4 * a + ( 3/4 * c + 0 ) ) } + 9 ) ) )",
293 "a,b,c", &all_vars
, &nvar
, &nparam
, options
->MaxRays
);
294 Free_ParamNames(all_vars
, nvar
+nparam
);
296 lattice_point(&V
, rays
, lambda
, &num
, 4, options
);
297 Matrix_Free(V
.Vertex
);
299 for (int i
= 0; i
< 4; ++i
) {
300 assert(eequal(num
.E
[i
], point
[i
]));
301 evalue_free(point
[i
]);
302 evalue_free(num
.E
[i
]);
307 static int test_icounter(struct barvinok_options
*options
)
313 set_from_string(n_coeff
, "[-2/1 1/1]");
314 set_from_string(n_power
, "[[2 6][3 6]]");
315 d_power
.SetDims(0, 2);
316 cnt
.reduce(n_coeff
, n_power
, d_power
);
317 assert(value_cmp_si(mpq_numref(cnt
.count
), -1) == 0);
318 assert(value_cmp_si(mpq_denref(cnt
.count
), 1) == 0);
321 static int test_infinite_counter(struct barvinok_options
*options
)
323 Matrix
*M
= matrix_read_from_str("1 3\n 1 1 0\n");
324 Polyhedron
*ctx
= Constraints2Polyhedron(M
, options
->MaxRays
);
327 /* (1 -1/2 x^5 - 1/2 x^7)/(1-x) */
328 infinite_counter
*cnt
= new infinite_counter(1, 1);
333 set_from_string(n_coeff
, "[1/1 -1/2 -1/2]");
334 set_from_string(n_power
, "[[0][5][7]]");
335 set_from_string(d_power
, "[[1]]");
336 cnt
->reduce(n_coeff
, n_power
, d_power
);
337 assert(value_cmp_si(mpq_numref(cnt
->count
[0]), 6) == 0);
338 assert(value_cmp_si(mpq_denref(cnt
->count
[0]), 1) == 0);
339 assert(value_cmp_si(mpq_numref(cnt
->count
[1]), 0) == 0);
340 assert(value_cmp_si(mpq_denref(cnt
->count
[1]), 1) == 0);
342 Polyhedron_Free(ctx
);
344 M
= matrix_read_from_str("2 4\n 1 1 0 0\n 1 0 1 0\n");
345 ctx
= Constraints2Polyhedron(M
, options
->MaxRays
);
348 /* (1 - xy)/((1-x)(1-xy)) */
349 cnt
= new infinite_counter(2, 3);
351 set_from_string(n_coeff
, "[1/1 -1/1]");
352 set_from_string(n_power
, "[[0 0][1 1]]");
353 set_from_string(d_power
, "[[1 0][1 1]]");
354 cnt
->reduce(n_coeff
, n_power
, d_power
);
355 assert(value_cmp_si(mpq_numref(cnt
->count
[1]), 0) != 0);
356 assert(value_cmp_si(mpq_numref(cnt
->count
[2]), 0) == 0);
357 assert(value_cmp_si(mpq_denref(cnt
->count
[2]), 1) == 0);
358 assert(value_cmp_si(mpq_numref(cnt
->count
[3]), 0) == 0);
359 assert(value_cmp_si(mpq_denref(cnt
->count
[3]), 1) == 0);
362 cnt
= new infinite_counter(2, 2);
364 set_from_string(n_coeff
, "[-1/2 1/1 -1/3]");
365 set_from_string(n_power
, "[[2 6][3 6]]");
366 d_power
.SetDims(0, 2);
367 cnt
->reduce(n_coeff
, n_power
, d_power
);
368 assert(value_cmp_si(mpq_numref(cnt
->count
[0]), 1) == 0);
369 assert(value_cmp_si(mpq_denref(cnt
->count
[0]), 6) == 0);
370 assert(value_cmp_si(mpq_numref(cnt
->count
[1]), 0) == 0);
371 assert(value_cmp_si(mpq_denref(cnt
->count
[1]), 1) == 0);
372 assert(value_cmp_si(mpq_numref(cnt
->count
[2]), 0) == 0);
373 assert(value_cmp_si(mpq_denref(cnt
->count
[2]), 1) == 0);
376 cnt
= new infinite_counter(2, 2);
378 set_from_string(n_coeff
, "[1/1]");
379 set_from_string(n_power
, "[[0 11]]");
380 set_from_string(d_power
, "[[0 1]]");
381 cnt
->reduce(n_coeff
, n_power
, d_power
);
382 assert(value_cmp_si(mpq_numref(cnt
->count
[1]), 0) != 0);
383 assert(value_cmp_si(mpq_numref(cnt
->count
[2]), 0) == 0);
384 assert(value_cmp_si(mpq_denref(cnt
->count
[2]), 1) == 0);
387 Polyhedron_Free(ctx
);
392 static int test_series(struct barvinok_options
*options
)
394 Matrix
*M
= matrix_read_from_str(
396 " 0 1 0 0 0 0 0 1 0 0 3 \n"
397 " 0 0 1 0 0 0 0 -1 1 0 -5 \n"
398 " 0 0 0 1 0 0 0 0 -2 -1 6 \n"
399 " 0 0 0 0 1 0 0 1 1 0 5 \n"
400 " 0 0 0 0 0 1 0 0 -1 0 0 \n"
401 " 0 0 0 0 0 0 1 -2 0 -1 -3 \n"
402 " 1 0 0 0 0 0 0 2 0 1 3 \n"
403 " 1 0 0 0 0 0 0 1 -1 0 5 \n"
404 " 1 0 0 0 0 0 0 -1 -1 0 -5 \n"
405 " 1 0 0 0 0 0 0 -1 0 0 -3 \n"
406 " 1 0 0 0 0 0 0 0 2 1 -6 \n"
407 " 1 0 0 0 0 0 0 0 1 0 0 \n");
408 Polyhedron
*P
= Constraints2Polyhedron(M
, options
->MaxRays
);
410 Polyhedron
*C
= Universe_Polyhedron(3);
411 gen_fun
*gf
= barvinok_series_with_options(P
, C
, options
);
416 M
= matrix_read_from_str(
418 " 0 1 1 0 0 1 0 2 \n"
419 " 0 0 0 1 0 -2 0 6 \n"
420 " 0 0 0 0 1 -1 0 -1 \n"
421 " 0 0 0 0 0 0 1 0 \n"
422 " 1 0 1 0 0 0 0 0 \n"
423 " 1 0 -1 0 0 -1 0 -2 \n"
424 " 1 0 0 0 0 1 0 -3 \n");
425 P
= Constraints2Polyhedron(M
, options
->MaxRays
);
427 C
= Universe_Polyhedron(2);
428 gf
= barvinok_series_with_options(P
, C
, options
);
433 M
= matrix_read_from_str(
437 P
= Constraints2Polyhedron(M
, options
->MaxRays
);
439 C
= Universe_Polyhedron(1);
440 gf
= barvinok_series_with_options(P
, C
, options
);
443 gen_fun
*sum
= gf
->summate(1, options
);
450 int test_todd(struct barvinok_options
*options
)
452 tcounter
t(2, options
->max_index
);
453 assert(value_cmp_si(t
.todd
.coeff
->p
[0], 1) == 0);
454 assert(value_cmp_si(t
.todd
.coeff
->p
[1], -3) == 0);
455 assert(value_cmp_si(t
.todd
.coeff
->p
[2], 3) == 0);
456 assert(value_cmp_si(t
.todd_denom
->p
[0], 1) == 0);
457 assert(value_cmp_si(t
.todd_denom
->p
[1], 6) == 0);
458 assert(value_cmp_si(t
.todd_denom
->p
[2], 36) == 0);
461 set_from_string(lambda
, "[1 -1]");
462 zz2values(lambda
, t
.lambda
->p
);
465 set_from_string(rays
, "[[-1 0][-1 1]]");
470 set_from_string(v
, "[2 0 1]");
471 Vector
*vertex
= Vector_Alloc(3);
472 zz2values(v
, vertex
->p
);
474 t
.handle(rays
, vertex
->p
, one
, 1, options
);
475 assert(value_cmp_si(mpq_numref(t
.count
), 71) == 0);
476 assert(value_cmp_si(mpq_denref(t
.count
), 24) == 0);
478 set_from_string(rays
, "[[0 -1][1 -1]]");
479 set_from_string(v
, "[0 2 1]");
480 zz2values(v
, vertex
->p
);
482 t
.handle(rays
, vertex
->p
, one
, 1, options
);
483 assert(value_cmp_si(mpq_numref(t
.count
), 71) == 0);
484 assert(value_cmp_si(mpq_denref(t
.count
), 12) == 0);
486 set_from_string(rays
, "[[1 0][0 1]]");
487 set_from_string(v
, "[0 0 1]");
488 zz2values(v
, vertex
->p
);
490 t
.handle(rays
, vertex
->p
, one
, 1, options
);
491 assert(value_cmp_si(mpq_numref(t
.count
), 6) == 0);
492 assert(value_cmp_si(mpq_denref(t
.count
), 1) == 0);
497 int test_bernoulli(struct barvinok_options
*options
)
499 struct bernoulli_coef
*bernoulli_coef
;
500 struct poly_list
*faulhaber
, *bernoulli
;
501 bernoulli_coef
= bernoulli_coef_compute(2);
502 faulhaber
= faulhaber_compute(4);
503 bernoulli_coef
= bernoulli_coef_compute(8);
504 assert(value_cmp_si(bernoulli_coef
->num
->p
[6], 1) == 0);
505 assert(value_cmp_si(bernoulli_coef
->den
->p
[6], 42) == 0);
506 assert(value_cmp_si(faulhaber
->poly
[3]->p
[0], 0) == 0);
507 assert(value_cmp_si(faulhaber
->poly
[3]->p
[1], 0) == 0);
508 assert(value_cmp_si(faulhaber
->poly
[3]->p
[2], 1) == 0);
509 assert(value_cmp_si(faulhaber
->poly
[3]->p
[3], -2) == 0);
510 assert(value_cmp_si(faulhaber
->poly
[3]->p
[4], 1) == 0);
511 assert(value_cmp_si(faulhaber
->poly
[3]->p
[5], 4) == 0);
513 bernoulli
= bernoulli_compute(6);
514 assert(value_cmp_si(bernoulli
->poly
[6]->p
[0], 1) == 0);
515 assert(value_cmp_si(bernoulli
->poly
[6]->p
[1], 0) == 0);
516 assert(value_cmp_si(bernoulli
->poly
[6]->p
[2], -21) == 0);
517 assert(value_cmp_si(bernoulli
->poly
[6]->p
[3], 0) == 0);
518 assert(value_cmp_si(bernoulli
->poly
[6]->p
[4], 105) == 0);
519 assert(value_cmp_si(bernoulli
->poly
[6]->p
[5], -126) == 0);
520 assert(value_cmp_si(bernoulli
->poly
[6]->p
[6], 42) == 0);
521 assert(value_cmp_si(bernoulli
->poly
[6]->p
[7], 42) == 0);
523 unsigned nvar
, nparam
;
524 const char **all_vars
;
525 evalue
*base
, *sum1
, *sum2
;
526 base
= evalue_read_from_str("(1 * n + 1)", NULL
, &all_vars
, &nvar
, &nparam
,
529 sum1
= evalue_polynomial(faulhaber
->poly
[3], base
);
530 Free_ParamNames(all_vars
, nvar
+nparam
);
532 sum2
= evalue_read_from_str("(1/4 * n^4 + 1/2 * n^3 + 1/4 * n^2)",
533 NULL
, &all_vars
, &nvar
, &nparam
,
535 Free_ParamNames(all_vars
, nvar
+nparam
);
536 assert(eequal(sum1
, sum2
));
542 int test_bernoulli_sum(struct barvinok_options
*options
)
544 int summation
= options
->summation
;
545 options
->summation
= BV_SUM_BERNOULLI
;
547 unsigned nvar
, nparam
;
548 const char **all_vars
;
549 evalue
*e
, *sum1
, *sum2
;
550 e
= evalue_read_from_str("i + -1 >= 0\n -i + n >= 0\n\n 1 + (-1 *i) + i^2",
551 "i", &all_vars
, &nvar
, &nparam
,
553 Free_ParamNames(all_vars
, nvar
+nparam
);
555 sum1
= barvinok_summate(e
, 1, options
);
556 sum2
= evalue_read_from_str("n -1 >= 0\n\n (1/3 * n^3 + 2/3 * n)",
557 NULL
, &all_vars
, &nvar
, &nparam
,
559 Free_ParamNames(all_vars
, nvar
+nparam
);
563 assert(EVALUE_IS_ZERO(*sum1
));
567 e
= evalue_read_from_str("-i + -1 >= 0\n i + n >= 0\n\n 1 + i + i^2",
568 "i", &all_vars
, &nvar
, &nparam
,
570 Free_ParamNames(all_vars
, nvar
+nparam
);
571 sum1
= barvinok_summate(e
, 1, options
);
575 assert(EVALUE_IS_ZERO(*sum1
));
581 e
= evalue_read_from_str("i + 4 >= 0\n -i + n >= 0\n\n i",
582 "i", &all_vars
, &nvar
, &nparam
,
584 Free_ParamNames(all_vars
, nvar
+nparam
);
585 sum1
= barvinok_summate(e
, 1, options
);
586 sum2
= evalue_read_from_str("n + 0 >= 0\n\n (1/2 * n^2 + 1/2 * n + (-10))\n"
587 "n + 4 >= 0\n -n -1 >= 0\n\n (1/2 * n^2 + 1/2 * n + (-10))",
588 NULL
, &all_vars
, &nvar
, &nparam
,
590 Free_ParamNames(all_vars
, nvar
+nparam
);
594 assert(EVALUE_IS_ZERO(*sum1
));
599 e
= evalue_read_from_str("i -5 >= 0\n -i + n >= 0\n j -1 >= 0\n i -j >= 0\n"
600 "k -1 >= 0\n j -k >= 0\n\n1",
601 "i,j,k", &all_vars
, &nvar
, &nparam
,
603 Free_ParamNames(all_vars
, nvar
+nparam
);
604 sum1
= barvinok_summate(e
, 3, options
);
605 sum2
= evalue_read_from_str("n -5 >= 0\n\n"
606 "1/6 * n^3 + 1/2 * n^2 + 1/3 * n + -20",
607 NULL
, &all_vars
, &nvar
, &nparam
,
609 Free_ParamNames(all_vars
, nvar
+nparam
);
613 assert(EVALUE_IS_ZERO(*sum1
));
618 options
->summation
= summation
;
621 int test_hilbert(struct barvinok_options
*options
)
624 Matrix
*M
= matrix_read_from_str(
628 Polyhedron
*P
= Constraints2Polyhedron(M
, options
->MaxRays
);
631 M
= Cone_Hilbert_Basis(P
, options
->MaxRays
);
632 assert(M
->NbRows
= 5);
633 assert(M
->NbColumns
= 3);
636 M
= Cone_Integer_Hull(P
, NULL
, 0, options
);
637 assert(M
->NbRows
= 4);
638 assert(M
->NbColumns
= 3);
645 int test_ilp(struct barvinok_options
*options
)
647 Matrix
*M
= matrix_read_from_str(
651 Polyhedron
*P
= Constraints2Polyhedron(M
, options
->MaxRays
);
653 Vector
*obj
= Vector_Alloc(2);
654 value_set_si(obj
->p
[0], 7);
655 value_set_si(obj
->p
[1], -1);
660 value_set_si(min
, 1);
661 value_set_si(max
, 17);
662 Vector
*opt
= Polyhedron_Integer_Minimum(P
, obj
->p
, min
, max
,
665 assert(value_cmp_si(opt
->p
[0], 1) == 0);
666 assert(value_cmp_si(opt
->p
[1], 1) == 0);
667 assert(value_cmp_si(opt
->p
[2], 1) == 0);
676 int test_hull(struct barvinok_options
*options
)
678 Matrix
*M
= matrix_read_from_str(
684 Polyhedron
*P
= Constraints2Polyhedron(M
, options
->MaxRays
);
687 Matrix
*hull
= Polyhedron_Integer_Hull(P
, options
);
689 assert(hull
->NbRows
== 4);
690 M
= Matrix_Alloc(hull
->NbRows
, 1+hull
->NbColumns
);
691 for (int i
= 0; i
< hull
->NbRows
; ++i
) {
692 value_set_si(M
->p
[i
][0], 1);
693 Vector_Copy(hull
->p
[i
], M
->p
[i
]+1, hull
->NbColumns
);
696 Polyhedron
*H
= Constraints2Polyhedron(M
, options
->MaxRays
);
699 M
= matrix_read_from_str(
705 P
= Constraints2Polyhedron(M
, options
->MaxRays
);
707 assert(PolyhedronIncludes(P
, H
) && PolyhedronIncludes(H
, P
));
711 M
= matrix_read_from_str(
716 P
= Constraints2Polyhedron(M
, options
->MaxRays
);
719 hull
= Polyhedron_Integer_Hull(P
, options
);
721 assert(hull
->NbRows
== 0);
725 static int test_laurent(struct barvinok_options
*options
)
727 unsigned nvar
, nparam
;
728 const char **all_vars
;
729 evalue
*e
, *sum
, *res
;
731 e
= evalue_read_from_str(" x1 >= 0\n"
733 " -x1 -x2 + 2 >= 0\n"
736 "x1,x2", &all_vars
, &nvar
, &nparam
,
738 Free_ParamNames(all_vars
, nvar
+nparam
);
740 int summation
= options
->summation
;
741 options
->summation
= BV_SUM_LAURENT
;
742 sum
= barvinok_summate(e
, nvar
, options
);
743 options
->summation
= summation
;
745 res
= evalue_read_from_str("(6 * N + 4 * M)",
746 "", &all_vars
, &nvar
, &nparam
,
748 Free_ParamNames(all_vars
, nvar
+nparam
);
750 assert(value_zero_p(sum
->d
));
751 assert(sum
->x
.p
->type
== partition
);
752 assert(sum
->x
.p
->size
== 2);
754 assert(eequal(res
, &sum
->x
.p
->arr
[1]));
761 int main(int argc
, char **argv
)
763 struct barvinok_options
*options
= barvinok_options_new_with_defaults();
764 test_equalities(options
);
765 test_evalue_read(options
);
767 test_evalue(options
);
768 test_substitute(options
);
769 test_split_periods(options
);
770 test_specialization(options
);
771 test_lattice_points(options
);
772 test_icounter(options
);
773 test_infinite_counter(options
);
774 test_series(options
);
776 test_bernoulli(options
);
777 test_bernoulli_sum(options
);
778 test_hilbert(options
);
781 test_laurent(options
);
782 barvinok_options_free(options
);