short_rat::print: correctly print out terms with a zero coefficient
[barvinok.git] / testlib.cc
blob6e571580b8dc5c3bc51e75472d2ad7d0ce8e7ccb
1 #include <assert.h>
2 #include <sstream>
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"
10 #include "dpoly.h"
11 #include "lattice_point.h"
12 #include "tcounter.h"
13 #include "bernoulli.h"
14 #include "matrix_read.h"
16 using std::cout;
17 using std::cerr;
18 using std::endl;
20 template <typename T>
21 void set_from_string(T& v, const char *s)
23 std::istringstream str(s);
24 str >> v;
27 int test_evalue(struct barvinok_options *options)
29 unsigned nvar, nparam;
30 char **all_vars;
31 evalue *poly1, poly2;
33 poly1 = evalue_read_from_str("(1/4 * n^4 + 1/2 * n^3 + 1/4 * n^2)",
34 NULL, &all_vars, &nvar, &nparam,
35 options->MaxRays);
36 Free_ParamNames(all_vars, nvar+nparam);
38 value_init(poly2.d);
39 evalue_copy(&poly2, poly1);
40 evalue_negate(poly1);
41 eadd(&poly2, poly1);
42 reduce_evalue(poly1);
43 assert(EVALUE_IS_ZERO(*poly1));
44 evalue_free(poly1);
45 free_evalue_refs(&poly2);
48 int test_split_periods(struct barvinok_options *options)
50 unsigned nvar, nparam;
51 char **all_vars;
52 evalue *e;
54 e = evalue_read_from_str("U + 2V + 3 >= 0\n- U -2V >= 0\n- U 10 >= 0\n"
55 "U >= 0\n\n({( 1/3 * U + ( 2/3 * V + 0 ))})",
56 NULL, &all_vars, &nvar, &nparam,
57 options->MaxRays);
58 Free_ParamNames(all_vars, nvar+nparam);
60 evalue_split_periods(e, 2, options->MaxRays);
61 assert(value_zero_p(e->d));
62 assert(e->x.p->type == partition);
63 assert(e->x.p->size == 4);
64 assert(value_zero_p(e->x.p->arr[1].d));
65 assert(e->x.p->arr[1].x.p->type == polynomial);
66 assert(value_zero_p(e->x.p->arr[3].d));
67 assert(e->x.p->arr[3].x.p->type == polynomial);
68 evalue_free(e);
71 int test_specialization(struct barvinok_options *options)
73 Value v;
74 value_init(v);
75 mpq_t count;
76 mpq_init(count);
78 value_set_si(v, 5);
79 dpoly n(2, v);
80 assert(value_cmp_si(n.coeff->p[0], 1) == 0);
81 assert(value_cmp_si(n.coeff->p[1], 5) == 0);
82 assert(value_cmp_si(n.coeff->p[2], 10) == 0);
84 value_set_si(v, 1);
85 dpoly d(2, v, 1);
86 value_set_si(v, 2);
87 dpoly d2(2, v, 1);
88 d *= d2;
89 assert(value_cmp_si(d.coeff->p[0], 2) == 0);
90 assert(value_cmp_si(d.coeff->p[1], 1) == 0);
91 assert(value_cmp_si(d.coeff->p[2], 0) == 0);
93 n.div(d, count, 1);
94 mpq_canonicalize(count);
95 assert(value_cmp_si(mpq_numref(count), 31) == 0);
96 assert(value_cmp_si(mpq_denref(count), 8) == 0);
98 value_set_si(v, -2);
99 dpoly n2(2, v);
100 assert(value_cmp_si(n2.coeff->p[0], 1) == 0);
101 assert(value_cmp_si(n2.coeff->p[1], -2) == 0);
102 assert(value_cmp_si(n2.coeff->p[2], 3) == 0);
104 n2.div(d, count, 1);
105 mpq_canonicalize(count);
106 assert(value_cmp_si(mpq_numref(count), 6) == 0);
107 assert(value_cmp_si(mpq_denref(count), 1) == 0);
109 value_clear(v);
110 mpq_clear(count);
113 int test_lattice_points(struct barvinok_options *options)
115 Param_Vertices V;
116 mat_ZZ tmp;
117 set_from_string(tmp, "[[0 0 0 0 4][0 0 0 0 4][-1 0 1 0 4]]");
118 V.Vertex = zz2matrix(tmp);
119 vec_ZZ lambda;
120 set_from_string(lambda, "[3 5 7]");
121 mat_ZZ rays;
122 set_from_string(rays, "[[0 1 0][4 0 1][0 0 -1]]");
123 term_info num;
124 evalue *point[4];
126 unsigned nvar, nparam;
127 char **all_vars;
128 point[0] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
129 "( 7 * {( 1/4 * a + ( 3/4 * c + 3/4 ) ) } + -21/4 ) ) )",
130 "a,b,c", &all_vars, &nvar, &nparam, options->MaxRays);
131 Free_ParamNames(all_vars, nvar+nparam);
132 point[1] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
133 "( 7 * {( 1/4 * a + ( 3/4 * c + 1/2 ) ) } + -1/2 ) ) )",
134 "a,b,c", &all_vars, &nvar, &nparam, options->MaxRays);
135 Free_ParamNames(all_vars, nvar+nparam);
136 point[2] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
137 "( 7 * {( 1/4 * a + ( 3/4 * c + 1/4 ) ) } + 17/4 ) ) )",
138 "a,b,c", &all_vars, &nvar, &nparam, options->MaxRays);
139 Free_ParamNames(all_vars, nvar+nparam);
140 point[3] = evalue_read_from_str("( -7/4 * a + ( 7/4 * c + "
141 "( 7 * {( 1/4 * a + ( 3/4 * c + 0 ) ) } + 9 ) ) )",
142 "a,b,c", &all_vars, &nvar, &nparam, options->MaxRays);
143 Free_ParamNames(all_vars, nvar+nparam);
145 lattice_point(&V, rays, lambda, &num, 4, options);
146 Matrix_Free(V.Vertex);
148 for (int i = 0; i < 4; ++i) {
149 assert(eequal(num.E[i], point[i]));
150 evalue_free(point[i]);
151 free_evalue_refs(num.E[i]);
152 delete num.E[i];
154 delete [] num.E;
157 static Matrix *matrix_read_from_str(const char *s)
159 std::istringstream str(s);
160 return Matrix_Read(str);
163 static int test_series(struct barvinok_options *options)
165 Matrix *M = matrix_read_from_str(
166 "12 11\n"
167 " 0 1 0 0 0 0 0 1 0 0 3 \n"
168 " 0 0 1 0 0 0 0 -1 1 0 -5 \n"
169 " 0 0 0 1 0 0 0 0 -2 -1 6 \n"
170 " 0 0 0 0 1 0 0 1 1 0 5 \n"
171 " 0 0 0 0 0 1 0 0 -1 0 0 \n"
172 " 0 0 0 0 0 0 1 -2 0 -1 -3 \n"
173 " 1 0 0 0 0 0 0 2 0 1 3 \n"
174 " 1 0 0 0 0 0 0 1 -1 0 5 \n"
175 " 1 0 0 0 0 0 0 -1 -1 0 -5 \n"
176 " 1 0 0 0 0 0 0 -1 0 0 -3 \n"
177 " 1 0 0 0 0 0 0 0 2 1 -6 \n"
178 " 1 0 0 0 0 0 0 0 1 0 0 \n");
179 Polyhedron *P = Constraints2Polyhedron(M, options->MaxRays);
180 Matrix_Free(M);
181 Polyhedron *C = Universe_Polyhedron(3);
182 gen_fun *gf = barvinok_series_with_options(P, C, options);
183 Polyhedron_Free(P);
184 Polyhedron_Free(C);
185 delete gf;
187 return 0;
190 int test_todd(struct barvinok_options *options)
192 tcounter t(2, options->max_index);
193 assert(value_cmp_si(t.todd.coeff->p[0], 1) == 0);
194 assert(value_cmp_si(t.todd.coeff->p[1], -3) == 0);
195 assert(value_cmp_si(t.todd.coeff->p[2], 3) == 0);
196 assert(value_cmp_si(t.todd_denom->p[0], 1) == 0);
197 assert(value_cmp_si(t.todd_denom->p[1], 6) == 0);
198 assert(value_cmp_si(t.todd_denom->p[2], 36) == 0);
200 vec_ZZ lambda;
201 set_from_string(lambda, "[1 -1]");
202 zz2values(lambda, t.lambda->p);
204 mat_ZZ rays;
205 set_from_string(rays, "[[-1 0][-1 1]]");
207 QQ one(1, 1);
209 vec_ZZ v;
210 set_from_string(v, "[2 0 1]");
211 Vector *vertex = Vector_Alloc(3);
212 zz2values(v, vertex->p);
214 t.handle(rays, vertex->p, one, 1, options);
215 assert(value_cmp_si(mpq_numref(t.count), 71) == 0);
216 assert(value_cmp_si(mpq_denref(t.count), 24) == 0);
218 set_from_string(rays, "[[0 -1][1 -1]]");
219 set_from_string(v, "[0 2 1]");
220 zz2values(v, vertex->p);
222 t.handle(rays, vertex->p, one, 1, options);
223 assert(value_cmp_si(mpq_numref(t.count), 71) == 0);
224 assert(value_cmp_si(mpq_denref(t.count), 12) == 0);
226 set_from_string(rays, "[[1 0][0 1]]");
227 set_from_string(v, "[0 0 1]");
228 zz2values(v, vertex->p);
230 t.handle(rays, vertex->p, one, 1, options);
231 assert(value_cmp_si(mpq_numref(t.count), 6) == 0);
232 assert(value_cmp_si(mpq_denref(t.count), 1) == 0);
234 Vector_Free(vertex);
237 int test_bernoulli(struct barvinok_options *options)
239 struct bernoulli_coef *bernoulli_coef;
240 struct poly_list *faulhaber, *bernoulli;
241 bernoulli_coef = bernoulli_coef_compute(2);
242 faulhaber = faulhaber_compute(4);
243 bernoulli_coef = bernoulli_coef_compute(8);
244 assert(value_cmp_si(bernoulli_coef->num->p[6], 1) == 0);
245 assert(value_cmp_si(bernoulli_coef->den->p[6], 42) == 0);
246 assert(value_cmp_si(faulhaber->poly[3]->p[0], 0) == 0);
247 assert(value_cmp_si(faulhaber->poly[3]->p[1], 0) == 0);
248 assert(value_cmp_si(faulhaber->poly[3]->p[2], 1) == 0);
249 assert(value_cmp_si(faulhaber->poly[3]->p[3], -2) == 0);
250 assert(value_cmp_si(faulhaber->poly[3]->p[4], 1) == 0);
251 assert(value_cmp_si(faulhaber->poly[3]->p[5], 4) == 0);
253 bernoulli = bernoulli_compute(6);
254 assert(value_cmp_si(bernoulli->poly[6]->p[0], 1) == 0);
255 assert(value_cmp_si(bernoulli->poly[6]->p[1], 0) == 0);
256 assert(value_cmp_si(bernoulli->poly[6]->p[2], -21) == 0);
257 assert(value_cmp_si(bernoulli->poly[6]->p[3], 0) == 0);
258 assert(value_cmp_si(bernoulli->poly[6]->p[4], 105) == 0);
259 assert(value_cmp_si(bernoulli->poly[6]->p[5], -126) == 0);
260 assert(value_cmp_si(bernoulli->poly[6]->p[6], 42) == 0);
261 assert(value_cmp_si(bernoulli->poly[6]->p[7], 42) == 0);
263 unsigned nvar, nparam;
264 char **all_vars;
265 evalue *base, *sum1, *sum2;
266 base = evalue_read_from_str("(1 * n + 1)", NULL, &all_vars, &nvar, &nparam,
267 options->MaxRays);
269 sum1 = evalue_polynomial(faulhaber->poly[3], base);
270 Free_ParamNames(all_vars, nvar+nparam);
272 sum2 = evalue_read_from_str("(1/4 * n^4 + 1/2 * n^3 + 1/4 * n^2)",
273 NULL, &all_vars, &nvar, &nparam,
274 options->MaxRays);
275 Free_ParamNames(all_vars, nvar+nparam);
276 assert(eequal(sum1, sum2));
277 evalue_free(base);
278 evalue_free(sum1);
279 evalue_free(sum2);
282 int test_bernoulli_sum(struct barvinok_options *options)
284 unsigned nvar, nparam;
285 char **all_vars;
286 evalue *e, *sum1, *sum2;
287 e = evalue_read_from_str("i + -1 >= 0\n -i + n >= 0\n\n 1 + (-1 *i) + i^2",
288 "i", &all_vars, &nvar, &nparam,
289 options->MaxRays);
290 Free_ParamNames(all_vars, nvar+nparam);
292 sum1 = Bernoulli_sum_evalue(e, 1, options);
293 sum2 = evalue_read_from_str("n -1 >= 0\n\n (1/3 * n^3 + 2/3 * n)",
294 NULL, &all_vars, &nvar, &nparam,
295 options->MaxRays);
296 Free_ParamNames(all_vars, nvar+nparam);
297 evalue_negate(sum1);
298 eadd(sum2, sum1);
299 reduce_evalue(sum1);
300 assert(EVALUE_IS_ZERO(*sum1));
301 evalue_free(e);
302 evalue_free(sum1);
304 e = evalue_read_from_str("-i + -1 >= 0\n i + n >= 0\n\n 1 + i + i^2",
305 "i", &all_vars, &nvar, &nparam,
306 options->MaxRays);
307 Free_ParamNames(all_vars, nvar+nparam);
308 sum1 = Bernoulli_sum_evalue(e, 1, options);
309 evalue_negate(sum1);
310 eadd(sum2, sum1);
311 reduce_evalue(sum1);
312 assert(EVALUE_IS_ZERO(*sum1));
313 evalue_free(e);
314 evalue_free(sum1);
316 evalue_free(sum2);
318 e = evalue_read_from_str("i + 4 >= 0\n -i + n >= 0\n\n i",
319 "i", &all_vars, &nvar, &nparam,
320 options->MaxRays);
321 Free_ParamNames(all_vars, nvar+nparam);
322 sum1 = Bernoulli_sum_evalue(e, 1, options);
323 sum2 = evalue_read_from_str("n + 0 >= 0\n\n (1/2 * n^2 + 1/2 * n + (-10))\n"
324 "n + 4 >= 0\n -n -1 >= 0\n\n (1/2 * n^2 + 1/2 * n + (-10))",
325 NULL, &all_vars, &nvar, &nparam,
326 options->MaxRays);
327 Free_ParamNames(all_vars, nvar+nparam);
328 evalue_negate(sum1);
329 eadd(sum2, sum1);
330 reduce_evalue(sum1);
331 assert(EVALUE_IS_ZERO(*sum1));
332 evalue_free(e);
333 evalue_free(sum1);
334 evalue_free(sum2);
336 e = evalue_read_from_str("i -5 >= 0\n -i + n >= 0\n j -1 >= 0\n i -j >= 0\n"
337 "k -1 >= 0\n j -k >= 0\n\n1",
338 "i,j,k", &all_vars, &nvar, &nparam,
339 options->MaxRays);
340 Free_ParamNames(all_vars, nvar+nparam);
341 sum1 = Bernoulli_sum_evalue(e, 3, options);
342 sum2 = evalue_read_from_str("n -5 >= 0\n\n"
343 "1/6 * n^3 + 1/2 * n^2 + 1/3 * n + -20",
344 NULL, &all_vars, &nvar, &nparam,
345 options->MaxRays);
346 Free_ParamNames(all_vars, nvar+nparam);
347 evalue_negate(sum1);
348 eadd(sum2, sum1);
349 reduce_evalue(sum1);
350 assert(EVALUE_IS_ZERO(*sum1));
351 evalue_free(e);
352 evalue_free(sum1);
353 evalue_free(sum2);
356 int main(int argc, char **argv)
358 struct barvinok_options *options = barvinok_options_new_with_defaults();
359 test_evalue(options);
360 test_split_periods(options);
361 test_specialization(options);
362 test_lattice_points(options);
363 test_series(options);
364 test_todd(options);
365 test_bernoulli(options);
366 test_bernoulli_sum(options);
367 barvinok_options_free(options);