verif_ehrhart.c: check lower and upper polynomial approximations
[barvinok.git] / verify.h
blob56d957bc802ea5254e614b739a8c7cea80c5e71d
1 #ifndef VERIFY_H
2 #define VERIFY_H
4 #include <barvinok/polylib.h>
5 #include "argp.h"
7 #if defined(__cplusplus)
8 extern "C" {
9 #endif
11 struct verify_options {
12 int verify;
13 int print_all;
14 int m;
15 int M;
17 /* "generated" options */
18 int st;
19 char **params;
20 struct barvinok_options *barvinok;
23 extern struct argp verify_argp;
24 void verify_options_set_range(struct verify_options *options, Polyhedron *P);
26 #if defined(__cplusplus)
28 #endif
30 #endif