volume.c: drop redundant arguments to volume_simplex
[barvinok.git] / remove_equalities.h
bloba9cbfbb65ca829bcc993fcb3e9c5d6b127f2c7f9
1 /* Don't make this header public without removing the include of config.h */
2 #include <barvinok/polylib.h>
4 #if defined(__cplusplus)
5 extern "C" {
6 #endif
8 #include "config.h"
10 #ifndef HAVE_COMPRESS_PARMS
11 static int remove_all_equalities(Polyhedron **P, Polyhedron **C, Matrix **CPP,
12 Matrix **CVP, unsigned nparam, unsigned MaxRays)
14 assert(0);
16 #else
17 int remove_all_equalities(Polyhedron **P, Polyhedron **C, Matrix **CPP, Matrix **CVP,
18 unsigned nparam, unsigned MaxRays);
19 #endif
21 #if defined(__cplusplus)
23 #endif