hide isl_seq
[isl.git] / isl_constraint_private.h
blobe02f0762e7cb70dbfa73cd430f5e708156d15eb5
1 #ifndef ISL_CONSTRAINT_PRIVATE_H
2 #define ISL_CONSTRAINT_PRIVATE_H
4 #include <isl/constraint.h>
5 #include <isl/local_space.h>
6 #include <isl/vec.h>
8 struct isl_constraint {
9 int ref;
11 int eq;
12 isl_local_space *ls;
13 isl_vec *v;
16 #undef EL
17 #define EL isl_constraint
19 #include <isl_list_templ.h>
21 struct isl_constraint *isl_basic_set_constraint(struct isl_basic_set *bset,
22 isl_int **line);
24 #endif