remove polyhedron_range
[barvinok.git] / polysign.h
blobbc7906446e5292b816c061a8cb49ac31eea37b12
1 #include <barvinok/polylib.h>
3 #if defined(__cplusplus)
4 extern "C" {
5 #endif
7 struct barvinok_options;
9 enum order_sign { order_lt, order_le, order_eq, order_ge, order_gt, order_unknown,
10 order_undefined };
12 /* Returns the sign of the affine function specified by T on the polyhedron D */
13 enum order_sign polyhedron_affine_sign(Polyhedron *D, Matrix *T,
14 struct barvinok_options *options);
15 enum order_sign PL_polyhedron_affine_sign(Polyhedron *D, Matrix *T,
16 struct barvinok_options *options);
17 enum order_sign cdd_polyhedron_affine_sign(Polyhedron *D, Matrix *T,
18 struct barvinok_options *options);
19 enum order_sign cddf_polyhedron_affine_sign(Polyhedron *D, Matrix *T,
20 struct barvinok_options *options);
22 enum lp_result { lp_ok = 0, lp_unbounded, lp_empty };
23 enum lp_dir { lp_min, lp_max };
25 enum lp_result constraints_opt(Matrix *C, Value *obj, Value denom,
26 enum lp_dir dir, Value *opt,
27 struct barvinok_options *options);
28 enum lp_result glpk_constraints_opt(Matrix *C, Value *obj, Value denom,
29 enum lp_dir dir, Value *opt);
30 enum lp_result PL_constraints_opt(Matrix *C, Value *obj, Value denom,
31 enum lp_dir dir, Value *opt,
32 unsigned MaxRays);
33 enum lp_result cdd_constraints_opt(Matrix *C, Value *obj, Value denom,
34 enum lp_dir dir, Value *opt);
35 enum lp_result cddf_constraints_opt(Matrix *C, Value *obj, Value denom,
36 enum lp_dir dir, Value *opt);
37 enum lp_result pip_constraints_opt(Matrix *C, Value *obj, Value denom,
38 enum lp_dir dir, Value *opt);
40 enum lp_result polyhedron_opt(Polyhedron *P, Value *obj, Value denom,
41 enum lp_dir dir, Value *opt,
42 struct barvinok_options *options);
43 enum lp_result PL_polyhedron_opt(Polyhedron *P, Value *obj, Value denom,
44 enum lp_dir dir, Value *opt);
46 #if defined(__cplusplus)
48 #endif