5 #include <bernstein/bernstein.h>
6 #include <barvinok/options.h>
7 #include <barvinok/bernstein.h>
8 #include <barvinok/util.h>
11 #include "evalue_read.h"
18 using namespace GiNaC
;
19 using namespace bernstein
;
20 using namespace barvinok
;
22 #define METHOD_BERNSTEIN 0
23 #define METHOD_PROPAGATION 1
29 { METHOD_PROPAGATION
},
32 #define nr_methods (sizeof(methods)/sizeof(*methods))
34 struct argp_option argp_options
[] = {
39 struct verify_options verify
;
42 static error_t
parse_opt(int key
, char *arg
, struct argp_state
*state
)
44 struct options
*options
= (struct options
*) state
->input
;
48 state
->child_inputs
[0] = options
->verify
.barvinok
;
49 state
->child_inputs
[1] = &options
->verify
;
52 return ARGP_ERR_UNKNOWN
;
59 double RE_sum
[nr_methods
];
61 clock_t ticks
[nr_methods
];
62 size_t size
[nr_methods
];
65 void result_data_init(struct result_data
*result
)
68 for (i
= 0; i
< nr_methods
; ++i
) {
69 result
->RE_sum
[i
] = 0;
73 value_init(result
->n
);
76 void result_data_clear(struct result_data
*result
)
79 value_clear(result
->n
);
82 void result_data_print(struct result_data
*result
, int n
)
86 fprintf(stderr
, "%d", result
->ticks
[0]/n
);
87 for (i
= 1; i
< nr_methods
; ++i
)
88 fprintf(stderr
, ", %d", result
->ticks
[i
]/n
);
89 fprintf(stderr
, "\n");
91 fprintf(stderr
, "%d", result
->size
[0]/n
);
92 for (i
= 1; i
< nr_methods
; ++i
)
93 fprintf(stderr
, ", %d", result
->size
[i
]/n
);
94 fprintf(stderr
, "\n");
96 fprintf(stderr
, "%g\n", VALUE_TO_DOUBLE(result
->n
));
97 fprintf(stderr
, "%g", result
->RE_sum
[0]/VALUE_TO_DOUBLE(result
->n
));
98 for (i
= 1; i
< nr_methods
; ++i
)
99 fprintf(stderr
, ", %g", result
->RE_sum
[i
]/VALUE_TO_DOUBLE(result
->n
));
100 fprintf(stderr
, "\n");
103 static int test_bound(const struct check_poly_data
*data
,
104 int nparam
, Value
*z
,
105 const struct verify_options
*options
);
107 struct test_bound_data
: public check_EP_data
{
109 struct result_data
*result
;
111 test_bound_data(evalue
*EP
, piecewise_lst
**pl
, result_data
*result
) :
112 pl(pl
), result(result
) {
114 this->cp
.check
= test_bound
;
118 static int test_bound(const struct check_poly_data
*data
,
119 int nparam
, Value
*z
,
120 const struct verify_options
*options
)
122 const test_bound_data
*tb_data
= (const test_bound_data
*)data
;
123 Value max
, min
, exact
, approx
;
133 evalue_optimum(tb_data
, &max
, 1);
134 evalue_optimum(tb_data
, &min
, -1);
135 value_assign(exact
, max
);
136 value_subtract(exact
, exact
, min
);
137 value_add_int(exact
, exact
, 1);
139 if (options
->print_all
) {
140 value_print(stderr
, "max: "VALUE_FMT
, max
);
141 value_print(stderr
, ", min: "VALUE_FMT
, min
);
142 value_print(stderr
, ", range: "VALUE_FMT
, exact
);
145 value_increment(tb_data
->result
->n
, tb_data
->result
->n
);
146 for (int i
= 0; i
< nr_methods
; ++i
) {
149 tb_data
->pl
[2*i
]->evaluate(nparam
, z
, &n
, &d
);
150 mpz_fdiv_q(max
, n
, d
);
151 tb_data
->pl
[2*i
+1]->evaluate(nparam
, z
, &n
, &d
);
152 mpz_cdiv_q(min
, n
, d
);
154 value_assign(approx
, max
);
155 value_subtract(approx
, approx
, min
);
156 value_add_int(approx
, approx
, 1);
157 if (options
->print_all
)
158 value_print(stderr
, ", "VALUE_FMT
, approx
);
160 assert(value_ge(approx
, exact
));
161 value_subtract(approx
, approx
, exact
);
163 error
= ::abs(VALUE_TO_DOUBLE(approx
)) / VALUE_TO_DOUBLE(exact
);
164 if (options
->print_all
)
165 fprintf(stderr
, " (%g)", error
);
166 tb_data
->result
->RE_sum
[i
] += error
;
169 if (options
->print_all
)
170 fprintf(stderr
, "\n");
182 static void test(evalue
*EP
, unsigned nvar
, unsigned nparam
,
183 piecewise_lst
**pl
, struct result_data
*result
,
184 struct verify_options
*options
)
186 test_bound_data
data(EP
, pl
, result
);
187 check_EP(&data
, nvar
, nparam
, options
);
190 void handle(FILE *in
, struct result_data
*result
, struct verify_options
*options
)
193 char **all_vars
= NULL
;
198 piecewise_lst
*pl
[2*nr_methods
];
200 EP
= evalue_read_from_file(in
, NULL
, &all_vars
,
201 &nvar
, &nparam
, options
->barvinok
->MaxRays
);
203 if (EVALUE_IS_ZERO(*EP
)) {
205 Free_ParamNames(all_vars
, nvar
+nparam
);
209 U
= Universe_Polyhedron(nparam
);
210 params
= constructParameterVector(all_vars
+nvar
, nparam
);
212 for (int i
= 0; i
< nr_methods
; ++i
) {
217 for (int j
= 0; j
< 2; ++j
) {
218 int sign
= j
== 0 ? BV_BERNSTEIN_MAX
: BV_BERNSTEIN_MIN
;
219 options
->barvinok
->bernstein_optimize
= sign
;
220 if (methods
[i
].method
== METHOD_BERNSTEIN
) {
221 pl
[2*i
+j
] = evalue_bernstein_coefficients(NULL
, EP
, U
, params
,
223 if (sign
== BV_BERNSTEIN_MIN
)
224 pl
[2*i
+j
]->minimize();
226 pl
[2*i
+j
]->maximize();
228 pl
[2*i
+j
] = evalue_range_propagation(NULL
, EP
, params
,
230 if (sign
== BV_BERNSTEIN_MIN
)
231 pl
[2*i
+j
]->sign
= -1;
237 result
->ticks
[i
] = en_cpu
.tms_utime
- st_cpu
.tms_utime
;
238 if (options
->barvinok
->verbose
)
239 for (int j
= 0; j
< 2; ++j
)
240 cerr
<< *pl
[2*i
+j
] << endl
;
242 test(EP
, nvar
, nparam
, pl
, result
, options
);
244 for (int i
= 0; i
< 2*nr_methods
; ++i
)
248 Free_ParamNames(all_vars
, nvar
+nparam
);
251 int main(int argc
, char **argv
)
253 struct barvinok_options
*bv_options
= barvinok_options_new_with_defaults();
254 char path
[PATH_MAX
+1];
255 struct result_data all_result
;
257 static struct argp_child argp_children
[] = {
258 { &barvinok_argp
, 0, 0, 0 },
259 { &verify_argp
, 0, "verification", BV_GRP_LAST
+1 },
262 static struct argp argp
= { argp_options
, parse_opt
, 0, 0, argp_children
};
263 struct options options
;
265 options
.verify
.barvinok
= bv_options
;
266 set_program_name(argv
[0]);
267 argp_parse(&argp
, argc
, argv
, 0, 0, &options
);
269 if (options
.verify
.M
== INT_MIN
)
270 options
.verify
.M
= 100;
271 if (options
.verify
.m
== INT_MAX
)
272 options
.verify
.m
= -100;
274 result_data_init(&all_result
);
276 while (fgets(path
, sizeof(path
), stdin
)) {
277 struct result_data result
;
282 result_data_init(&result
);
283 fprintf(stderr
, "%s", path
);
284 *strchr(path
, '\n') = '\0';
285 in
= fopen(path
, "r");
287 handle(in
, &result
, &options
.verify
);
290 result_data_print(&result
, 1);
292 value_addto(all_result
.n
, all_result
.n
, result
.n
);
293 for (i
= 0; i
< nr_methods
; ++i
) {
294 all_result
.RE_sum
[i
] += result
.RE_sum
[i
];
295 all_result
.ticks
[i
] += result
.ticks
[i
];
296 all_result
.size
[i
] += result
.size
[i
];
299 result_data_clear(&result
);
301 fprintf(stderr
, "average\n");
302 result_data_print(&all_result
, n
);
305 result_data_clear(&all_result
);
307 barvinok_options_free(bv_options
);