repo.or.cz
/
isl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
isl_point_private.h: protect against multiple inclusions
[isl.git]
/
isl_bound.h
blob
1a9d390eab97427d6dfcc964b4f69e40bff76736
1
#ifndef ISL_BOUND_H
2
#define ISL_BOUND_H
3
4
#include <isl/polynomial.h>
5
6
struct
isl_bound
{
7
/* input */
8
int
check_tight
;
9
int
wrapping
;
10
enum
isl_fold type
;
11
isl_space
*
dim
;
12
isl_basic_set
*
bset
;
13
isl_qpolynomial_fold
*
fold
;
14
15
/* output */
16
isl_pw_qpolynomial_fold
*
pwf
;
17
isl_pw_qpolynomial_fold
*
pwf_tight
;
18
};
19
20
#endif