update ChangeLog
[barvinok.git] / barvinok.h
blob5e1cd2e2a304bc7c7c0ea1781d3049796368d678
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 /* private function */
19 evalue* bv_ceil3(Value *coef, int len, Value d);
21 #if defined(__cplusplus)
23 #endif
25 #endif