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 /*************************************************/
19 #include <polylib/polylibgmp.h>
20 #include "ev_operations.h"
25 /* define this to print all the results */
26 /* else, only a progress bar is printed */
27 /* #define PRINT_ALL_RESULTS
28 /* define this to continue the test after first error found */
29 /* #define DONT_BREAK_ON_ERROR */
31 /* RANGE : normal range for evalutations (-RANGE -> RANGE) */
34 /* SRANGE : small range for evalutations */
37 /* if dimension >= BIDDIM, use SRANGE */
40 /* VSRANGE : very small range for evalutations */
43 /* if dimension >= VBIDDIM, use VSRANGE */
50 #ifdef DONT_BREAK_ON_ERROR
51 #define PRINT_ALL_RESULTS
54 #ifndef PRINT_ALL_RESULTS
58 /****************************************************/
59 /* function check_poly : */
60 /* scans the parameter space from min to max (all */
61 /* directions). Computes the number of points in */
62 /* the polytope using both methods, and compare them*/
63 /* returns 1 on success */
64 /****************************************************/
66 int check_poly(Polyhedron
*S
, Polyhedron
*C
, evalue
*EP
,
67 int exist
, int nparam
, int pos
, Value
*z
) {
72 value_init(c
); value_init(tmp
);
76 /* Computes the ehrhart polynomial */
77 value_set_double(c
, compute_evalue(EP
,&z
[S
->Dimension
-nparam
+1])+.25);
78 /* if c=0 we may be out of context. */
79 /* scanning is useless in this case*/
80 if(!in_domain(C
,&z
[S
->Dimension
-nparam
+1])) {
86 #ifdef PRINT_ALL_RESULTS
88 value_print(stdout
,VALUE_FMT
,z
[S
->Dimension
-nparam
+1]);
89 for(k
=S
->Dimension
-nparam
+2;k
<=S
->Dimension
;++k
) {
91 value_print(stdout
,VALUE_FMT
,z
[k
]);
94 value_print(stdout
,VALUE_FMT
,c
);
98 /* Manually count the number of points */
99 count_points_e(1, S
, exist
, nparam
, z
, &tmp
);
100 #ifdef PRINT_ALL_RESULTS
101 printf(", count = ");
102 value_print(stdout
, P_VALUE_FMT
, tmp
);
106 if(value_ne(tmp
,c
)) {
109 fprintf(stderr
,"Error !\n");
110 fprintf(stderr
,"EP( ");
111 value_print(stderr
,VALUE_FMT
,z
[S
->Dimension
-nparam
+1]);
112 for(k
=S
->Dimension
-nparam
+2;k
<=S
->Dimension
;++k
) {
113 fprintf(stderr
,", ");
114 value_print(stderr
,VALUE_FMT
,z
[k
]);
116 fprintf(stderr
," ) should be ");
117 value_print(stderr
,VALUE_FMT
,tmp
);
118 fprintf(stderr
,", while EP eval gives ");
119 value_print(stderr
,VALUE_FMT
,c
);
120 fprintf(stderr
,".\n");
121 print_evalue(stderr
, EP
, params
);
122 #ifndef DONT_BREAK_ON_ERROR
123 value_clear(c
); value_clear(tmp
);
128 #ifdef PRINT_ALL_RESULTS
135 for(value_assign(tmp
,min
); value_le(tmp
,max
); value_increment(tmp
,tmp
)) {
137 #ifndef PRINT_ALL_RESULTS
138 k
= VALUE_TO_INT(tmp
);
139 if(!pos
&& !(k
%st
)) {
145 value_assign(z
[pos
+S
->Dimension
-nparam
+1],tmp
);
146 if(!check_poly(S
, C
, EP
, exist
, nparam
, pos
+1, z
)) {
147 value_clear(c
); value_clear(tmp
);
151 value_clear(c
); value_clear(tmp
);
155 int main(int argc
,char *argv
[])
158 Polyhedron
*C
, *P
, *S
;
167 /******* Read the input *********/
170 fgets(s
, 128, stdin
);
171 while ((*s
=='#') || (sscanf(s
, "E %d", &exist
)<1))
172 fgets(s
, 128, stdin
);
174 fgets(s
, 128, stdin
);
175 while ((*s
=='#') || (sscanf(s
, "P %d", &nparam
)<1))
176 fgets(s
, 128, stdin
);
178 P
= Constraints2Polyhedron(P1
,MAXRAYS
);
179 params
= Read_ParamNames(stdin
, nparam
);
182 /******* Read the options: initialize min and max ********/
183 if(P
->Dimension
>= VBIGDIM
)
185 else if(P
->Dimension
>= BIGDIM
)
191 for(i
=1;i
<argc
;i
++) {
192 if(!strncmp(argv
[i
],"-m",2)) {
195 m
= atoi(&argv
[i
][2]);
197 else if(!strncmp(argv
[i
],"-M",2)) {
200 M
= atoi(&argv
[i
][2]);
202 else if(!strncmp(argv
[i
], "-r", 2)) {
204 /* range specified */
205 M
= atoi(&argv
[i
][2]);
209 fprintf(stderr
,"Unknown option: %s\n",argv
[i
]);
210 fprintf(stderr
,"Usage: %s [-m<>][-M<>][-r<>]\n",argv
[0]);
216 fprintf(stderr
,"Nothing to do: min > max !\n");
225 /******* Compute true context *******/
226 C1
= Matrix_Alloc(nparam
+1,P
->Dimension
+1);
228 for(i
=0;i
<C1
->NbRows
;i
++)
229 for(j
=0;j
<C1
->NbColumns
;j
++)
230 if(i
==j
-P
->Dimension
+nparam
)
231 value_set_si(C1
->p
[i
][j
],1);
233 value_set_si(C1
->p
[i
][j
],0);
234 C
= Polyhedron_Image(P
,C1
,MAXRAYS
);
237 /******* Compute EP *********/
238 EP
= barvinok_enumerate_e(P
, exist
, nparam
, MAXRAYS
);
240 /******* Initializations for check *********/
241 p
= (Value
*)malloc(sizeof(Value
) * (P
->Dimension
+2));
242 for(i
=0;i
<=P
->Dimension
;i
++) {
244 value_set_si(p
[i
],0);
247 value_set_si(p
[i
],1);
249 /* S = scanning list of polyhedra */
250 S
= Polyhedron_Scan(P
,C
,MAXRAYS
);
252 #ifndef PRINT_ALL_RESULTS
253 if(C
->Dimension
> 0) {
254 value_substract(tmp
,max
,min
);
255 if (VALUE_TO_INT(tmp
) > 80)
256 st
= 1+(VALUE_TO_INT(tmp
))/80;
259 for(i
=VALUE_TO_INT(min
);i
<=VALUE_TO_INT(max
);i
+=st
)
266 /******* CHECK NOW *********/
268 if(S
&& !check_poly(S
, C
, EP
, exist
, nparam
, 0, p
)) {
269 fprintf(stderr
,"Check failed !\n");
273 #ifndef PRINT_ALL_RESULTS
277 for(i
=0;i
<=(P
->Dimension
+1);i
++)
281 Free_ParamNames(params
, C
->Dimension
);
285 free_evalue_refs(EP
);