X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=isl_bound.h;h=1a9d390eab97427d6dfcc964b4f69e40bff76736;hb=63fb8a7f484648c3caa25351c8c94ac2395ec563;hp=18cfe74df9b3fc8642ec95ab9f20535d18cf7fa2;hpb=7eaa3a76a690e066e4d3d11e801bf048770cb4ca;p=platform%2Fupstream%2Fisl.git diff --git a/isl_bound.h b/isl_bound.h index 18cfe74..1a9d390 100644 --- a/isl_bound.h +++ b/isl_bound.h @@ -1,20 +1,20 @@ #ifndef ISL_BOUND_H #define ISL_BOUND_H -#include +#include struct isl_bound { /* input */ int check_tight; + int wrapping; enum isl_fold type; - isl_qpolynomial *qp; + isl_space *dim; + isl_basic_set *bset; + isl_qpolynomial_fold *fold; /* output */ isl_pw_qpolynomial_fold *pwf; isl_pw_qpolynomial_fold *pwf_tight; }; -__isl_give isl_pw_qpolynomial_fold *isl_pw_qpolynomial_bound( - __isl_take isl_pw_qpolynomial *pwqp, enum isl_fold type, int *tight); - #endif