evalue.c: reorder_terms: fix typo
[barvinok.git] / barvinok / basis_reduction.h
blob432024fd5353a33552c34449671824986b0a8918
1 #ifndef BARVINOK_BASIS_REDUCTION_H
2 #define BARVINOK_BASIS_REDUCTION_H
4 #include <barvinok/polylib.h>
6 #if defined(__cplusplus)
7 extern "C" {
8 #endif
10 struct barvinok_options;
12 Matrix *Polyhedron_Reduced_Basis(Polyhedron *P, struct barvinok_options *options);
14 Matrix *glpk_Polyhedron_Reduced_Basis(Polyhedron *P);
15 Matrix *cdd_Polyhedron_Reduced_Basis(Polyhedron *P);
17 #if defined(__cplusplus)
19 #endif
21 #endif