barvinok_enumerate_e: extract out verification options
[barvinok.git] / verify.h
blob6209db86b1519f8366aeec96b031051e6f509135
1 #include <barvinok/polylib.h>
2 #include "argp.h"
4 #if defined(__cplusplus)
5 extern "C" {
6 #endif
8 struct verify_options {
9 int verify;
10 int print_all;
11 int m;
12 int M;
15 extern struct argp verify_argp;
16 void verify_options_set_range(struct verify_options *options, Polyhedron *P);
18 #if defined(__cplusplus)
20 #endif