3 #include <barvinok/isl.h>
4 #include <barvinok/options.h>
5 #include <barvinok/util.h>
8 #define ALLOCN(type,n) (type*)malloc((n) * sizeof(type))
10 /* RANGE : normal range for evalutations (-RANGE -> RANGE) */
13 /* SRANGE : small range for evalutations */
16 /* if dimension >= BIDDIM, use SRANGE */
19 /* VSRANGE : very small range for evalutations */
22 /* if dimension >= VBIDDIM, use VSRANGE */
25 static int set_m(void *opt
, long val
)
27 struct verify_options
*options
= (struct verify_options
*)opt
;
33 static int set_M(void *opt
, long val
)
35 struct verify_options
*options
= (struct verify_options
*)opt
;
41 static int set_r(void *opt
, long val
)
43 struct verify_options
*options
= (struct verify_options
*)opt
;
51 ISL_ARGS_START(struct verify_options
, verify_options_args
)
52 ISL_ARG_CHILD(struct verify_options
, barvinok
, NULL
, &barvinok_options_args
,
54 ISL_ARG_BOOL(struct verify_options
, verify
, 'T', "verify", 0, NULL
)
55 ISL_ARG_BOOL(struct verify_options
, exact
, 'E', "exact", 0, NULL
)
56 ISL_ARG_BOOL(struct verify_options
, print_all
, 'A', "print-all", 0, NULL
)
57 ISL_ARG_BOOL(struct verify_options
, continue_on_error
, 'C',
58 "continue-on-error", 0, NULL
)
59 ISL_ARG_USER_LONG(struct verify_options
, m
, 'm', "min", set_m
, INT_MAX
, NULL
)
60 ISL_ARG_USER_LONG(struct verify_options
, M
, 'M', "max", set_M
, INT_MIN
, NULL
)
61 ISL_ARG_USER_LONG(struct verify_options
, r
, 'r', "range", set_r
, -1, NULL
)
64 void verify_options_set_range(struct verify_options
*options
, int dim
)
70 else if (dim
>= BIGDIM
)
74 /* If the user didn't set m or M, then we try to adjust the window
75 * to the context in check_poly_context_scan.
77 if (options
->m
== INT_MAX
&& options
->M
== INT_MIN
)
79 if (options
->M
== INT_MIN
)
81 if (options
->m
== INT_MAX
)
84 if (options
->verify
&& options
->m
> options
->M
) {
85 fprintf(stderr
,"Nothing to do: min > max !\n");
90 static Polyhedron
*project_on(Polyhedron
*P
, int i
)
92 unsigned dim
= P
->Dimension
;
97 return Polyhedron_Copy(P
);
99 T
= Matrix_Alloc(2, dim
+1);
100 value_set_si(T
->p
[0][i
], 1);
101 value_set_si(T
->p
[1][dim
], 1);
102 I
= Polyhedron_Image(P
, T
, P
->NbConstraints
);
107 static void set_bounds(Polyhedron
*C
, Value
**rows
, int i
, unsigned nparam
,
108 const struct verify_options
*options
)
115 value_set_si(min
, options
->m
);
116 value_set_si(max
, options
->M
);
118 if (options
->r
> 0) {
119 Polyhedron
*I
= project_on(C
, i
);
120 line_minmax(I
, &min
, &max
);
121 if (value_cmp_si(min
, options
->M
) >= 0)
122 value_add_int(max
, min
, options
->r
);
123 else if (value_cmp_si(max
, options
->m
) <= 0)
124 value_sub_int(min
, max
, options
->r
);
126 value_set_si(min
, options
->m
);
127 value_set_si(max
, options
->M
);
131 value_set_si(rows
[0][0], 1);
132 value_set_si(rows
[0][1+i
], 1);
133 value_oppose(rows
[0][1+nparam
], min
);
134 value_set_si(rows
[1][0], 1);
135 value_set_si(rows
[1][1+i
], -1);
136 value_assign(rows
[1][1+nparam
], max
);
142 Polyhedron
*check_poly_context_scan(Polyhedron
*P
, Polyhedron
**C
,
144 const struct verify_options
*options
)
148 Polyhedron
*CC
, *CC2
, *CS
, *U
;
149 unsigned MaxRays
= options
->barvinok
->MaxRays
;
157 CC
= Polyhedron_Project(P
, nparam
);
159 CC2
= DomainIntersection(*C
, CC
, MaxRays
);
165 /* Intersect context with range */
166 MM
= Matrix_Alloc(2*nparam
, nparam
+2);
167 for (i
= 0; i
< nparam
; ++i
)
168 set_bounds(CC
, &MM
->p
[2*i
], i
, nparam
, options
);
169 CC2
= AddConstraints(MM
->p
[0], 2*nparam
, CC
, options
->barvinok
->MaxRays
);
173 U
= Universe_Polyhedron(0);
174 CS
= Polyhedron_Scan(CC
, U
, MaxRays
& POL_NO_DUAL
? 0 : MaxRays
);
181 void check_poly_init(Polyhedron
*C
, struct verify_options
*options
)
185 if (options
->print_all
)
187 if (C
->Dimension
<= 0)
190 d
= options
->M
- options
->m
;
192 options
->st
= 1+d
/80;
195 for (i
= options
->m
; i
<= options
->M
; i
+= options
->st
)
201 static void print_rational(FILE *out
, Value n
, Value d
)
203 value_print(out
, VALUE_FMT
, n
);
204 if (value_notone_p(d
)) {
206 value_print(out
, VALUE_FMT
, d
);
210 void check_poly_print(int ok
, int nparam
, Value
*z
,
211 Value want_n
, Value want_d
,
212 Value got_n
, Value got_d
,
213 const char *op
, const char *check
,
215 const struct verify_options
*options
)
219 if (options
->print_all
) {
221 value_print(stdout
, VALUE_FMT
, z
[0]);
222 for (k
= 1; k
< nparam
; ++k
) {
224 value_print(stdout
, VALUE_FMT
, z
[k
]);
227 print_rational(stdout
, got_n
, got_d
);
228 printf(", %s = ", check
);
229 print_rational(stdout
, want_n
, want_d
);
236 fprintf(stderr
, "Error !\n");
237 fprintf(stderr
, "%s(", op
);
238 value_print(stderr
, VALUE_FMT
, z
[0]);
239 for (k
= 1; k
< nparam
; ++k
) {
240 fprintf(stderr
,", ");
241 value_print(stderr
, VALUE_FMT
, z
[k
]);
243 fprintf(stderr
, ") should be ");
244 print_rational(stderr
, want_n
, want_d
);
245 fprintf(stderr
, ", while %s gives ", long_op
);
246 print_rational(stderr
, got_n
, got_d
);
247 fprintf(stderr
, ".\n");
248 } else if (options
->print_all
)
252 /****************************************************/
253 /* function check_poly : */
254 /* scans the parameter space from Min to Max (all */
255 /* directions). Computes the number of points in */
256 /* the polytope using both methods, and compare them*/
257 /* returns 1 on success */
258 /****************************************************/
260 int check_poly(Polyhedron
*CS
, const struct check_poly_data
*data
,
261 int nparam
, int pos
, Value
*z
,
262 const struct verify_options
*options
)
265 if (!data
->check(data
, nparam
, z
, options
) && !options
->continue_on_error
)
272 ok
= !(lower_upper_bounds(1+pos
, CS
, z
-1, &LB
, &UB
));
274 for (; value_le(LB
, UB
); value_increment(LB
, LB
)) {
275 if (!options
->print_all
) {
276 int k
= VALUE_TO_INT(LB
);
277 if (!pos
&& !(k
% options
->st
)) {
283 value_assign(z
[pos
], LB
);
284 if (!check_poly(CS
->next
, data
, nparam
, pos
+1, z
, options
)) {
290 value_set_si(z
[pos
], 0);
297 void check_EP_set_scan(struct check_EP_data
*data
, Polyhedron
*C
,
300 const evalue
*EP
= data
->EP
;
304 for (i
= 0; i
< EP
->x
.p
->size
/2; ++i
) {
305 Polyhedron
*A
= EVALUE_DOMAIN(EP
->x
.p
->arr
[2*i
]);
306 for (; A
; A
= A
->next
)
311 data
->S
= ALLOCN(Polyhedron
*, n_S
);
313 for (i
= 0; i
< EP
->x
.p
->size
/2; ++i
) {
314 Polyhedron
*A
= EVALUE_DOMAIN(EP
->x
.p
->arr
[2*i
]);
315 for (; A
; A
= A
->next
) {
316 Polyhedron
*next
= A
->next
;
318 data
->S
[n_S
++] = Polyhedron_Scan(A
, C
,
319 MaxRays
& POL_NO_DUAL
? 0 : MaxRays
);
325 void check_EP_clear_scan(struct check_EP_data
*data
)
329 for (i
= 0; i
< data
->n_S
; ++i
)
330 Domain_Free(data
->S
[i
]);
334 static int check_EP_on_poly(Polyhedron
*P
,
335 struct check_EP_data
*data
,
336 unsigned nvar
, unsigned nparam
,
337 struct verify_options
*options
)
340 unsigned MaxRays
= options
->barvinok
->MaxRays
;
342 const evalue
*EP
= data
->EP
;
344 CS
= check_poly_context_scan(NULL
, &P
, P
->Dimension
, options
);
346 check_poly_init(P
, options
);
348 if (!(CS
&& emptyQ2(CS
))) {
349 check_EP_set_scan(data
, P
, MaxRays
);
350 ok
= check_poly(CS
, &data
->cp
, nparam
, 0, data
->cp
.z
+1+nvar
, options
);
351 check_EP_clear_scan(data
);
354 if (!options
->print_all
)
366 * Project on final dim dimensions
368 Polyhedron
*DomainProject(Polyhedron
*D
, unsigned dim
, unsigned MaxRays
)
373 R
= Polyhedron_Project(D
, dim
);
374 for (P
= D
->next
; P
; P
= P
->next
) {
375 Polyhedron
*R2
= Polyhedron_Project(P
, dim
);
376 Polyhedron
*R3
= DomainUnion(R
, R2
, MaxRays
);
384 static Polyhedron
*evalue_parameter_domain(const evalue
*e
, unsigned nparam
,
388 Polyhedron
*U
= NULL
;
390 if (EVALUE_IS_ZERO(*e
))
391 return Universe_Polyhedron(0);
393 assert(value_zero_p(e
->d
));
394 assert(e
->x
.p
->type
== partition
);
395 assert(e
->x
.p
->size
>= 2);
397 for (i
= 0; i
< e
->x
.p
->size
/2; ++i
) {
398 Polyhedron
*D
= EVALUE_DOMAIN(e
->x
.p
->arr
[2*i
]);
399 Polyhedron
*P
= DomainProject(D
, nparam
, MaxRays
);
404 U
= DomainUnion(U
, P
, MaxRays
);
412 int check_EP(struct check_EP_data
*data
, unsigned nvar
, unsigned nparam
,
413 struct verify_options
*options
)
420 p
= Vector_Alloc(nvar
+nparam
+2);
421 value_set_si(p
->p
[nvar
+nparam
+1], 1);
425 D
= evalue_parameter_domain(data
->EP
, nparam
, options
->barvinok
->MaxRays
);
427 for (P
= D
; P
; P
= P
->next
) {
428 ok
= check_EP_on_poly(P
, data
, nvar
, nparam
, options
);
429 if (!ok
&& !options
->continue_on_error
)
439 __isl_give isl_set
*verify_context_set_bounds(__isl_take isl_set
*set
,
440 const struct verify_options
*options
)
447 nparam
= isl_set_dim(set
, isl_dim_param
);
449 if (options
->r
> 0) {
450 pt
= isl_set_sample_point(isl_set_copy(set
));
451 pt2
= isl_point_copy(pt
);
453 for (i
= 0; i
< nparam
; ++i
) {
454 pt
= isl_point_add_ui(pt
, isl_dim_param
, i
, options
->r
);
455 pt2
= isl_point_sub_ui(pt2
, isl_dim_param
, i
, options
->r
);
461 ctx
= isl_set_get_ctx(set
);
462 pt
= isl_point_zero(isl_set_get_space(set
));
463 v
= isl_val_int_from_si(ctx
, options
->m
);
464 for (i
= 0; i
< nparam
; ++i
)
465 pt
= isl_point_set_coordinate_val(pt
, isl_dim_param
, i
,
469 pt2
= isl_point_zero(isl_set_get_space(set
));
470 v
= isl_val_int_from_si(ctx
, options
->M
);
471 for (i
= 0; i
< nparam
; ++i
)
472 pt2
= isl_point_set_coordinate_val(pt2
, isl_dim_param
,
477 box
= isl_set_box_from_points(pt
, pt2
);
479 return isl_set_intersect(set
, box
);
482 int verify_point_data_init(struct verify_point_data
*vpd
,
483 __isl_keep isl_set
*context
)
488 context
= isl_set_copy(context
);
489 context
= isl_set_move_dims(context
, isl_dim_set
, 0, isl_dim_param
, 0,
490 isl_set_dim(context
, isl_dim_param
));
491 v
= isl_pw_qpolynomial_max(isl_set_card(context
));
492 vpd
->n
= isl_val_cmp_si(v
, 200) < 0 ? isl_val_get_num_si(v
) : 200;
495 if (!vpd
->options
->print_all
) {
496 vpd
->s
= vpd
->n
< 80 ? 1 : 1 + vpd
->n
/80;
497 for (i
= 0; i
< vpd
->n
; i
+= vpd
->s
)
503 vpd
->error
= !v
? -1 : 0;
508 void verify_point_data_fini(struct verify_point_data
*vpd
)
510 if (!vpd
->options
->print_all
)
514 fprintf(stderr
, "Check failed !\n");