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
doc: mention rename of *_fast_* to *_plain_*
[isl.git]
/
isl_constraint_private.h
blob
8fab9d403d2cea883468b20fe3a6579d4ffd8cf1
1
#ifndef ISL_CONSTRAINT_PRIVATE_H
2
#define ISL_CONSTRAINT_PRIVATE_H
3
4
#include <isl/constraint.h>
5
6
struct
isl_constraint
{
7
int
ref
;
8
struct
isl_ctx
*
ctx
;
9
10
struct
isl_basic_map
*
bmap
;
11
isl_int
**
line
;
12
};
13
14
struct
isl_constraint
*
isl_basic_set_constraint
(
struct
isl_basic_set
*
bset
,
15
isl_int
**
line
);
16
17
#endif