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_input.c: read_tuple: use isl_map_intersect_params where needed
[isl.git]
/
isl_constraint_private.h
blob
83143254cc09f1fc9b2f910c6c3cad868437eaed
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_local_space
*
ls
;
12
isl_vec
*
v
;
13
};
14
15
struct
isl_constraint
*
isl_basic_set_constraint
(
struct
isl_basic_set
*
bset
,
16
isl_int
**
line
);
17
18
#endif