zz2values: make first argument const
[barvinok.git] / conversion.h
blobd28301a140f0ccbc5021ab6f371d687a099573a4
1 #include <gmp.h>
2 #include <NTL/mat_ZZ.h>
3 extern "C" {
4 #include <polylib/polylibgmp.h>
7 #ifdef NTL_STD_CXX
8 using namespace NTL;
9 #endif
11 void value2zz(Value v, ZZ& z);
12 void zz2value(const ZZ& z, Value& v);
13 void values2zz(Value *p, vec_ZZ& v, int len);
14 void zz2values(const vec_ZZ& v, Value *p);
15 void matrix2zz(Matrix *M, mat_ZZ& m, unsigned nr, unsigned nc);
16 Matrix *rays(Polyhedron *C);
17 Matrix * rays2(Polyhedron *C);