introduce identifiers
[platform/upstream/isl.git] / isl_constraint_private.h
1 #ifndef ISL_CONSTRAINT_PRIVATE_H
2 #define ISL_CONSTRAINT_PRIVATE_H
3
4 #include <isl/constraint.h>
5
6 struct isl_constraint {
7         int ref;
8         struct isl_ctx *ctx;
9
10         struct isl_basic_map    *bmap;
11         isl_int                 **line;
12 };
13
14 struct isl_constraint *isl_basic_set_constraint(struct isl_basic_set *bset,
15         isl_int **line);
16
17 #endif