blob: 83143254cc09f1fc9b2f910c6c3cad868437eaed [file] [log] [blame]
#ifndef ISL_CONSTRAINT_PRIVATE_H
#define ISL_CONSTRAINT_PRIVATE_H
#include <isl/aff.h>
#include <isl/constraint.h>
struct isl_constraint {
int ref;
int eq;
isl_local_space *ls;
isl_vec *v;
};
struct isl_constraint *isl_basic_set_constraint(struct isl_basic_set *bset,
isl_int **line);
#endif