dpoly: add some documentation
[barvinok.git] / verify.h
blobc0688f4c06c5bb97b2bf41c107526b0216532f96
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;
18 extern struct argp verify_argp;
19 void verify_options_set_range(struct verify_options *options, Polyhedron *P);
21 #if defined(__cplusplus)
23 #endif
25 #endif