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 #ifndef HAVE_COUNT_POINTS4
26 #define count_points(a,b,c,d) { \
27 int cc = count_points(a,b,c); \
28 value_set_si(*d,cc); \
32 /* define this to print all the results */
33 /* else, only a progress bar is printed */
34 /* #define PRINT_ALL_RESULTS */
35 /* define this to continue the test after first error found */
36 /* #define DONT_BREAK_ON_ERROR */
38 /* RANGE : normal range for evalutations (-RANGE -> RANGE) */
41 /* SRANGE : small range for evalutations */
44 /* if dimension >= BIDDIM, use SRANGE */
47 /* VSRANGE : very small range for evalutations */
50 /* if dimension >= VBIDDIM, use VSRANGE */
57 #ifdef DONT_BREAK_ON_ERROR
58 #define PRINT_ALL_RESULTS
61 #ifndef PRINT_ALL_RESULTS
65 /****************************************************/
66 /* function check_poly : */
67 /* scans the parameter space from min to max (all */
68 /* directions). Computes the number of points in */
69 /* the polytope using both methods, and compare them*/
70 /* returns 1 on success */
71 /****************************************************/
73 int check_poly(Polyhedron
*S
,Polyhedron
*C
,Enumeration
*en
,
74 int nparam
,int pos
,Value
*z
) {
79 value_init(c
); value_init(tmp
);
83 /* Computes the ehrhart polynomial */
84 value_assign(c
,*(ctmp
=compute_poly(en
,&z
[S
->Dimension
-nparam
+1])));
86 /* if c=0 we may be out of context. */
87 /* scanning is useless in this case*/
88 if(!in_domain(C
,&z
[S
->Dimension
-nparam
+1])) {
94 #ifdef PRINT_ALL_RESULTS
96 value_print(stdout
,VALUE_FMT
,z
[S
->Dimension
-nparam
+1]);
97 for(k
=S
->Dimension
-nparam
+2;k
<=S
->Dimension
;++k
) {
99 value_print(stdout
,VALUE_FMT
,z
[k
]);
102 value_print(stdout
,VALUE_FMT
,c
);
106 /* Manually count the number of points */
107 count_points(1,S
,z
,&tmp
);
108 #ifdef PRINT_ALL_RESULTS
109 printf(", count = ");
110 value_print(stdout
, P_VALUE_FMT
, tmp
);
114 if(value_ne(tmp
,c
)) {
117 fprintf(stderr
,"Error !\n");
118 fprintf(stderr
,"EP( ");
119 value_print(stderr
,VALUE_FMT
,z
[S
->Dimension
-nparam
+1]);
120 for(k
=S
->Dimension
-nparam
+2;k
<=S
->Dimension
;++k
) {
121 fprintf(stderr
,", ");
122 value_print(stderr
,VALUE_FMT
,z
[k
]);
124 fprintf(stderr
," ) should be ");
125 value_print(stderr
,VALUE_FMT
,tmp
);
126 fprintf(stderr
,", while EP eval gives ");
127 value_print(stderr
,VALUE_FMT
,c
);
128 fprintf(stderr
,".\n");
131 Enumeration_Print(stderr
, en
, params
);
134 if (in_domain(ee
->ValidityDomain
,&z
[S
->Dimension
-nparam
+1])) {
135 Print_Domain(stderr
, ee
->ValidityDomain
, params
);
136 print_evalue(stderr
, &ee
->EP
, params
);
141 #ifndef DONT_BREAK_ON_ERROR
142 value_clear(c
); value_clear(tmp
);
147 #ifdef PRINT_ALL_RESULTS
154 for(value_assign(tmp
,min
); value_le(tmp
,max
); value_increment(tmp
,tmp
)) {
156 #ifndef PRINT_ALL_RESULTS
157 k
= VALUE_TO_INT(tmp
);
158 if(!pos
&& !(k
%st
)) {
164 value_assign(z
[pos
+S
->Dimension
-nparam
+1],tmp
);
165 if(!check_poly(S
,C
,en
,nparam
,pos
+1,z
)) {
166 value_clear(c
); value_clear(tmp
);
170 value_clear(c
); value_clear(tmp
);
174 int main(int argc
,char *argv
[]) {
177 Polyhedron
*C
, *P
, *S
;
184 /******* Read the input *********/
188 if(C1
->NbColumns
< 2) {
189 fprintf(stderr
,"Not enough parameters !\n");
193 P
= Constraints2Polyhedron(P1
,MAXRAYS
);
194 C
= Constraints2Polyhedron(C1
,MAXRAYS
);
195 params
= Read_ParamNames(stdin
, C
->Dimension
);
199 /******* Read the options: initialize min and max ********/
200 if(P
->Dimension
>= VBIGDIM
)
202 else if(P
->Dimension
>= BIGDIM
)
208 for(i
=1;i
<argc
;i
++) {
209 if(!strncmp(argv
[i
],"-m",2)) {
212 m
= atoi(&argv
[i
][2]);
214 else if(!strncmp(argv
[i
],"-M",2)) {
217 M
= atoi(&argv
[i
][2]);
219 else if(!strncmp(argv
[i
], "-r", 2)) {
221 /* range specified */
222 M
= atoi(&argv
[i
][2]);
226 fprintf(stderr
,"Unknown option: %s\n",argv
[i
]);
227 fprintf(stderr
,"Usage: %s [-m<>][-M<>][-r<>]\n",argv
[0]);
233 fprintf(stderr
,"Nothing to do: min > max !\n");
242 /******* Compute true context *******/
243 CC
= align_context(C
,P
->Dimension
,MAXRAYS
);
244 PP
= DomainIntersection(P
,CC
,MAXRAYS
);
246 C1
= Matrix_Alloc(C
->Dimension
+1,P
->Dimension
+1);
248 for(i
=0;i
<C1
->NbRows
;i
++)
249 for(j
=0;j
<C1
->NbColumns
;j
++)
250 if(i
==j
-P
->Dimension
+C
->Dimension
)
251 value_set_si(C1
->p
[i
][j
],1);
253 value_set_si(C1
->p
[i
][j
],0);
254 CC
= Polyhedron_Image(PP
,C1
,MAXRAYS
);
258 /******* Compute EP *********/
259 en
= barvinok_enumerate(P
,C
,MAXRAYS
);
261 /******* Initializations for check *********/
262 p
= (Value
*)malloc(sizeof(Value
) * (P
->Dimension
+2));
263 for(i
=0;i
<=P
->Dimension
;i
++) {
265 value_set_si(p
[i
],0);
268 value_set_si(p
[i
],1);
270 /* S = scanning list of polyhedra */
271 S
= Polyhedron_Scan(P
,C
,MAXRAYS
);
273 #ifndef PRINT_ALL_RESULTS
274 if(C
->Dimension
> 0) {
275 value_substract(tmp
,max
,min
);
276 if (VALUE_TO_INT(tmp
) > 80)
277 st
= 1+(VALUE_TO_INT(tmp
))/80;
280 for(i
=VALUE_TO_INT(min
);i
<=VALUE_TO_INT(max
);i
+=st
)
287 /******* CHECK NOW *********/
288 if(S
&& !check_poly(S
,C
,en
,C
->Dimension
,0,p
)) {
289 fprintf(stderr
,"Check failed !\n");
290 for(i
=0;i
<=(P
->Dimension
+1);i
++)
296 #ifndef PRINT_ALL_RESULTS
300 for(i
=0;i
<=(P
->Dimension
+1);i
++)
303 Free_ParamNames(params
, C
->Dimension
);