4 #include <barvinok/polylib.h>
7 #if defined(__cplusplus)
11 struct verify_options
{
15 int continue_on_error
;
19 /* "generated" options */
21 const char *const *params
;
22 struct barvinok_options
*barvinok
;
25 extern struct argp verify_argp
;
26 void verify_options_set_range(struct verify_options
*options
, int dim
);
28 Polyhedron
*check_poly_context_scan(Polyhedron
*P
, Polyhedron
**C
,
30 const struct verify_options
*options
);
31 void check_poly_init(Polyhedron
*C
, struct verify_options
*options
);
32 void check_poly_print(int ok
, int nparam
, Value
*z
,
33 Value want_n
, Value want_d
,
34 Value got_n
, Value got_d
,
35 const char *op
, const char *check
,
37 const struct verify_options
*options
);
39 struct check_poly_data
;
40 typedef int (*check_poly_fun
)(const struct check_poly_data
*data
,
42 const struct verify_options
*options
);
43 struct check_poly_data
{
48 int check_poly(Polyhedron
*CS
, const struct check_poly_data
*data
,
49 int nparam
, int pos
, Value
*z
,
50 const struct verify_options
*options
);
52 #if defined(__cplusplus)