Line data Source code
1 : #include <isl/constraint.h>
2 :
3 : /* This function was replaced by isl_constraint_alloc_equality.
4 : */
5 0 : __isl_give isl_constraint *isl_equality_alloc(__isl_take isl_local_space *ls)
6 : {
7 0 : return isl_constraint_alloc_equality(ls);
8 : }
9 :
10 : /* This function was replaced by isl_constraint_alloc_inequality.
11 : */
12 0 : __isl_give isl_constraint *isl_inequality_alloc(__isl_take isl_local_space *ls)
13 : {
14 0 : return isl_constraint_alloc_inequality(ls);
15 : }
|