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_pw_*_add_disjoint: try and extend one of the pws instead of copying pieces
[isl.git]
/
isl_constraint_private.h
blob
529a9451eceb8b774698a8636cd8850f965532d1
1
#ifndef ISL_CONSTRAINT_PRIVATE_H
2
#define ISL_CONSTRAINT_PRIVATE_H
3
4
#include <isl/aff.h>
5
#include <isl/constraint.h>
6
7
struct
isl_constraint
{
8
int
ref
;
9
10
int
eq
;
11
isl_aff
*
aff
;
12
};
13
14
struct
isl_constraint
*
isl_basic_set_constraint
(
struct
isl_basic_set
*
bset
,
15
isl_int
**
line
);
16
17
#endif