isl_stream: keep track of textual representation of tokens for better error reporting
[isl.git] / isl_bound.h
blob5ec8bc9469057d5e6a65b665b0ca6d6053b520c7
1 #ifndef ISL_BOUND_H
2 #define ISL_BOUND_H
4 #include <isl/polynomial.h>
6 struct isl_bound {
7 /* input */
8 int check_tight;
9 enum isl_fold type;
10 isl_basic_set *bset;
11 isl_qpolynomial_fold *fold;
13 /* output */
14 isl_pw_qpolynomial_fold *pwf;
15 isl_pw_qpolynomial_fold *pwf_tight;
18 #endif