1 #include <barvinok/options.h>
2 #include <barvinok/sample.h>
5 #ifdef HAVE_GROWING_CHERNIKOVA
6 #define MAXRAYS (POL_NO_DUAL | POL_INTEGER)
11 int main(int argc
, char **argv
)
16 struct barvinok_options
*bv_options
= barvinok_options_new_with_defaults();
19 P
= Constraints2Polyhedron(M
, bv_options
->MaxRays
);
22 sample
= Polyhedron_Sample(P
, bv_options
);
24 assert(in_domain(P
, sample
->p
));
25 Vector_Print(stdout
, P_VALUE_FMT
, sample
);