3 #include <barvinok/barvinok.h>
11 { BV_APPROX_SIGN_NONE
, BV_APPROX_NONE
, 0 },
12 { BV_APPROX_SIGN_APPROX
, BV_APPROX_DROP
, 0 },
13 { BV_APPROX_SIGN_APPROX
, BV_APPROX_VOLUME
, 0 },
14 { BV_APPROX_SIGN_APPROX
, BV_APPROX_SCALE
, 0 },
15 { BV_APPROX_SIGN_APPROX
, BV_APPROX_SCALE
, BV_APPROX_SCALE_CHAMBER
},
16 { BV_APPROX_SIGN_APPROX
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
},
17 { BV_APPROX_SIGN_APPROX
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_CHAMBER
},
18 { BV_APPROX_SIGN_LOWER
, BV_APPROX_DROP
, 0 },
19 { BV_APPROX_SIGN_LOWER
, BV_APPROX_VOLUME
, 0 },
20 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, 0 },
21 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_CHAMBER
},
22 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
},
23 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_CHAMBER
},
24 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW
},
25 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW
| BV_APPROX_SCALE_CHAMBER
},
26 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW
},
27 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW
| BV_APPROX_SCALE_CHAMBER
},
28 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW2
},
29 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW2
| BV_APPROX_SCALE_CHAMBER
},
30 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW2
},
31 { BV_APPROX_SIGN_LOWER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW2
| BV_APPROX_SCALE_CHAMBER
},
32 { BV_APPROX_SIGN_UPPER
, BV_APPROX_DROP
, 0 },
33 { BV_APPROX_SIGN_UPPER
, BV_APPROX_VOLUME
, 0 },
34 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, 0 },
35 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_CHAMBER
},
36 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
},
37 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_CHAMBER
},
38 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW
},
39 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW
| BV_APPROX_SCALE_CHAMBER
},
40 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW
},
41 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW
| BV_APPROX_SCALE_CHAMBER
},
42 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW2
},
43 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_NARROW2
| BV_APPROX_SCALE_CHAMBER
},
44 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW2
},
45 { BV_APPROX_SIGN_UPPER
, BV_APPROX_SCALE
, BV_APPROX_SCALE_FAST
| BV_APPROX_SCALE_NARROW2
| BV_APPROX_SCALE_CHAMBER
},
48 #define nr_methods (sizeof(methods)/sizeof(*methods))
50 struct argp_option argp_options
[] = {
57 struct verify_options verify
;
60 static error_t
parse_opt(int key
, char *arg
, struct argp_state
*state
)
62 struct options
*options
= (struct options
*) state
->input
;
66 state
->child_inputs
[0] = options
->verify
.barvinok
;
67 state
->child_inputs
[1] = &options
->verify
;
74 return ARGP_ERR_UNKNOWN
;
81 double RE_sum
[nr_methods
];
83 clock_t ticks
[nr_methods
];
84 size_t size
[nr_methods
];
87 void result_data_init(struct result_data
*result
)
90 for (i
= 0; i
< nr_methods
; ++i
) {
91 result
->RE_sum
[i
] = 0;
95 value_init(result
->n
);
98 void result_data_clear(struct result_data
*result
)
101 value_clear(result
->n
);
104 void result_data_print(struct result_data
*result
, int n
)
108 fprintf(stderr
, "%d", result
->ticks
[0]/n
);
109 for (i
= 1; i
< nr_methods
; ++i
)
110 fprintf(stderr
, ", %d", result
->ticks
[i
]/n
);
111 fprintf(stderr
, "\n");
113 fprintf(stderr
, "%d", result
->size
[0]/n
);
114 for (i
= 1; i
< nr_methods
; ++i
)
115 fprintf(stderr
, ", %d", result
->size
[i
]/n
);
116 fprintf(stderr
, "\n");
118 fprintf(stderr
, "%g\n", VALUE_TO_DOUBLE(result
->n
));
119 fprintf(stderr
, "%g", result
->RE_sum
[0]/VALUE_TO_DOUBLE(result
->n
));
120 for (i
= 1; i
< nr_methods
; ++i
)
121 fprintf(stderr
, ", %g", result
->RE_sum
[i
]/VALUE_TO_DOUBLE(result
->n
));
122 fprintf(stderr
, "\n");
125 struct test_approx_data
{
126 struct check_poly_data cp
;
128 struct result_data
*result
;
131 static void eval(const evalue
*EP
, Value
*z
, int sign
, Value
*v
)
135 res
= evalue_eval(EP
, z
);
136 if (sign
== BV_APPROX_SIGN_LOWER
)
137 mpz_cdiv_q(*v
, res
->x
.n
, res
->d
);
138 else if (sign
== BV_APPROX_SIGN_UPPER
)
139 mpz_fdiv_q(*v
, res
->x
.n
, res
->d
);
140 else if (sign
== BV_APPROX_SIGN_APPROX
)
141 mpz_tdiv_q(*v
, res
->x
.n
, res
->d
);
143 assert(value_one_p(res
->d
));
144 value_assign(*v
, res
->x
.n
);
146 free_evalue_refs(res
);
150 static int test_approx(const struct check_poly_data
*data
, int nparam
, Value
*z
,
151 const struct verify_options
*options
)
153 struct test_approx_data
* ta_data
= (struct test_approx_data
*) data
;
160 eval(ta_data
->EP
[0], z
, BV_APPROX_SIGN_NONE
, &exact
);
163 value_print(stderr, VALUE_FMT, exact);
166 value_increment(ta_data
->result
->n
, ta_data
->result
->n
);
167 for (i
= 1; i
< nr_methods
; ++i
) {
169 eval(ta_data
->EP
[i
], z
, methods
[i
].sign
, &approx
);
171 fprintf(stderr, ", ");
172 value_print(stderr, VALUE_FMT, approx);
174 if (methods
[i
].sign
== BV_APPROX_SIGN_LOWER
)
175 assert(value_le(approx
, exact
));
176 if (methods
[i
].sign
== BV_APPROX_SIGN_UPPER
)
177 assert(value_ge(approx
, exact
));
178 value_subtract(approx
, approx
, exact
);
179 if (value_zero_p(exact
))
180 error
= abs(VALUE_TO_DOUBLE(approx
));
182 error
= abs(VALUE_TO_DOUBLE(approx
)) / VALUE_TO_DOUBLE(exact
);
183 ta_data
->result
->RE_sum
[i
] += error
;
187 fprintf(stderr, "\n");
195 static void test(Polyhedron
*P
, Polyhedron
*C
, evalue
**EP
,
196 struct result_data
*result
,
197 struct verify_options
*options
)
201 unsigned nparam
= C
->Dimension
;
202 struct test_approx_data data
;
204 CS
= check_poly_context_scan(P
, &C
, C
->Dimension
, options
);
206 p
= Vector_Alloc(P
->Dimension
+2);
207 value_set_si(p
->p
[P
->Dimension
+1], 1);
209 check_poly_init(C
, options
);
212 data
.cp
.check
= test_approx
;
214 data
.result
= result
;
215 check_poly(CS
, &data
.cp
, nparam
, 0, p
->p
+P
->Dimension
-nparam
+1,
217 if (!options
->print_all
)
227 void Matrix_File_Read_Input(FILE *in
, Matrix
*Mat
)
231 char *c
, s
[1024],str
[1024];
234 for (i
=0;i
<Mat
->NbRows
;i
++) {
236 c
= fgets(s
, 1024, in
);
237 while(isspace(*c
) && *c
!='\n')
239 } while(c
&& (*c
=='#' || *c
== '\n'));
242 errormsg1( "Matrix_Read", "baddim", "not enough rows" );
245 for (j
=0;j
<Mat
->NbColumns
;j
++) {
246 if(!c
|| *c
=='\n' || *c
=='#') {
247 errormsg1("Matrix_Read", "baddim", "not enough columns");
250 if (sscanf(c
,"%s%n",str
,&n
) == 0) {
251 errormsg1( "Matrix_Read", "baddim", "not enough columns" );
254 value_read(*(p
++),str
);
258 } /* Matrix_Read_Input */
261 * Read the contents of the matrix 'Mat' from standard input.
262 * A '#' in the first column is a comment line
264 Matrix
*Matrix_File_Read(FILE *in
)
267 unsigned NbRows
, NbColumns
;
271 while ((*s
=='#' || *s
=='\n') ||
272 (sscanf(s
, "%d %d", &NbRows
, &NbColumns
)<2))
274 Mat
= Matrix_Alloc(NbRows
,NbColumns
);
276 errormsg1("Matrix_Read", "outofmem", "out of memory space");
279 Matrix_File_Read_Input(in
, Mat
);
283 void handle(FILE *in
, struct result_data
*result
, struct verify_options
*options
)
289 evalue
*EP
[nr_methods
];
291 M
= Matrix_File_Read(in
);
292 A
= Constraints2Polyhedron(M
, options
->barvinok
->MaxRays
);
294 M
= Matrix_File_Read(in
);
295 C
= Constraints2Polyhedron(M
, options
->barvinok
->MaxRays
);
297 param_name
= Read_ParamNames(in
, C
->Dimension
);
299 for (i
= 0; i
< nr_methods
; ++i
) {
302 options
->barvinok
->polynomial_approximation
= methods
[i
].sign
;
303 options
->barvinok
->approximation_method
= methods
[i
].method
;
304 options
->barvinok
->scale_flags
= methods
[i
].flags
;
307 EP
[i
] = barvinok_enumerate_with_options(A
, C
, options
->barvinok
);
309 result
->ticks
[i
] = en_cpu
.tms_utime
- st_cpu
.tms_utime
;
311 print_evalue(stdout, EP[i], param_name);
314 for (i
= 0; i
< nr_methods
; ++i
)
315 result
->size
[i
] = evalue_size(EP
[i
])/4;
316 test(A
, C
, EP
, result
, options
);
317 for (i
= 0; i
< nr_methods
; ++i
) {
318 free_evalue_refs(EP
[i
]);
322 Free_ParamNames(param_name
, C
->Dimension
);
327 int main(int argc
, char **argv
)
329 struct barvinok_options
*bv_options
= barvinok_options_new_with_defaults();
330 char path
[PATH_MAX
+1];
331 struct result_data all_result
;
333 static struct argp_child argp_children
[] = {
334 { &barvinok_argp
, 0, 0, 0 },
335 { &verify_argp
, 0, "verification", BV_GRP_LAST
+1 },
338 static struct argp argp
= { argp_options
, parse_opt
, 0, 0, argp_children
};
339 struct options options
;
341 options
.verify
.barvinok
= bv_options
;
342 argp_parse(&argp
, argc
, argv
, 0, 0, &options
);
344 if (options
.verify
.M
== INT_MIN
)
345 options
.verify
.M
= 100;
346 if (options
.verify
.m
== INT_MAX
)
347 options
.verify
.m
= -100;
349 result_data_init(&all_result
);
351 while (fgets(path
, sizeof(path
), stdin
)) {
352 struct result_data result
;
357 result_data_init(&result
);
358 fprintf(stderr
, "%s", path
);
359 *strchr(path
, '\n') = '\0';
360 in
= fopen(path
, "r");
362 handle(in
, &result
, &options
.verify
);
366 result_data_print(&result
, 1);
368 value_addto(all_result
.n
, all_result
.n
, result
.n
);
369 for (i
= 0; i
< nr_methods
; ++i
) {
370 all_result
.RE_sum
[i
] += result
.RE_sum
[i
];
371 all_result
.ticks
[i
] += result
.ticks
[i
];
372 all_result
.size
[i
] += result
.size
[i
];
375 result_data_clear(&result
);
377 if (!options
.quiet
) {
378 fprintf(stderr
, "average\n");
379 result_data_print(&all_result
, n
);
383 result_data_clear(&all_result
);
385 barvinok_options_free(bv_options
);