1 /*************************************************/
3 /* program to compare effective number of points */
4 /* in a polytope with the corresponding */
5 /* evaluation of the Ehrhart polynomial. */
6 /* Parameters vary in range -RANGE to RANGE */
7 /* (define below) by default. */
8 /* Can be overridden by specifying */
9 /* -r<RANGE>, or -m<min> and -M<max> */
11 /* written by Vincent Loechner (c) 2000. */
12 /* loechner@icps.u-strasbg.fr */
13 /*************************************************/
20 #include <barvinok/evalue.h>
21 #include <barvinok/barvinok.h>
22 #include <barvinok/util.h>
23 #include "verif_ehrhart.h"
25 #undef CS /* for Solaris 10 */
27 struct check_poly_EP_data
{
28 struct check_poly_data cp
;
34 static int cp_EP(const struct check_poly_data
*data
, int nparam
, Value
*z
,
35 const struct verify_options
*options
)
40 int pa
= options
->barvinok
->approx
->approximation
;
41 struct check_poly_EP_data
* EP_data
= (struct check_poly_EP_data
*) data
;
42 const evalue
*EP
= EP_data
->EP
;
43 int exist
= EP_data
->exist
;
44 Polyhedron
*S
= EP_data
->S
;
51 /* Computes the ehrhart polynomial */
52 if (!options
->exact
) {
53 double d
= compute_evalue(EP
, z
);
54 if (pa
== BV_APPROX_SIGN_LOWER
)
56 else if (pa
== BV_APPROX_SIGN_UPPER
)
58 value_set_double(c
, d
+.25);
60 evalue
*res
= evalue_eval(EP
, z
);
61 if (pa
== BV_APPROX_SIGN_LOWER
)
62 mpz_cdiv_q(c
, res
->x
.n
, res
->d
);
63 else if (pa
== BV_APPROX_SIGN_UPPER
)
64 mpz_fdiv_q(c
, res
->x
.n
, res
->d
);
66 mpz_tdiv_q(c
, res
->x
.n
, res
->d
);
70 /* Manually count the number of points */
71 count_points_e(1, S
, exist
, nparam
, data
->z
, &tmp
);
73 if (pa
== BV_APPROX_SIGN_APPROX
)
74 /* just accept everything */
76 else if (pa
== BV_APPROX_SIGN_LOWER
)
77 ok
= value_le(c
, tmp
);
78 else if (pa
== BV_APPROX_SIGN_UPPER
)
79 ok
= value_ge(c
, tmp
);
81 ok
= value_eq(c
, tmp
);
83 check_poly_print(ok
, nparam
, z
, tmp
, one
, c
, one
,
84 "EP", "count", "EP eval", options
);
87 print_evalue(stderr
, EP
, options
->params
);
88 if (value_zero_p(EP
->d
) && EP
->x
.p
->type
== partition
)
89 for (k
= 0; k
< EP
->x
.p
->size
/2; ++k
) {
90 Polyhedron
*D
= EVALUE_DOMAIN(EP
->x
.p
->arr
[2*k
]);
91 if (in_domain(D
, z
)) {
92 Print_Domain(stderr
, D
, options
->params
);
93 print_evalue(stderr
, &EP
->x
.p
->arr
[2*k
+1], options
->params
);
105 int check_poly_EP(Polyhedron
*S
, Polyhedron
*CS
, evalue
*EP
, int exist
,
106 int nparam
, int pos
, Value
*z
, const struct verify_options
*options
)
108 struct check_poly_EP_data data
;
110 data
.cp
.check
= cp_EP
;
114 return check_poly(CS
, &data
.cp
, nparam
, pos
, z
+S
->Dimension
-nparam
+1, options
);