DomainIncludes
[barvinok.git] / barvinok.h
blob5b9991a846435f249847b92264852f6c8243dc27
1 #ifndef BARVINOK_H
2 #define BARVINOK_H
4 #include <gmp.h>
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
10 #include <polylib/polylibgmp.h>
12 void barvinok_decompose(Polyhedron *C, Polyhedron **ppos, Polyhedron **pneg);
13 void barvinok_count(Polyhedron *P, Value* result, unsigned NbMaxCons);
14 Enumeration* barvinok_enumerate(Polyhedron *P, Polyhedron* C, unsigned MaxRays);
15 evalue* barvinok_enumerate_e(Polyhedron *P,
16 unsigned exist, unsigned nparam, unsigned MaxRays);
18 evalue* ceil3(Value *coef, int len, Value d);
20 #if defined(__cplusplus)
22 #endif
24 #endif