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 0.27
[isl.git]
/
include
/
isl
/
space_type.h
blob
60c31b0d21d81a2bd669cc48aed4825f60590aca
1
#ifndef ISL_SPACE_TYPE_H
2
#define ISL_SPACE_TYPE_H
3
4
#include <isl/ctx.h>
5
6
#if defined(__cplusplus)
7
extern
"C"
{
8
#endif
9
10
struct
__isl_export isl_space
;
11
typedef
struct
isl_space isl_space
;
12
13
enum
isl_dim_type
{
14
isl_dim_cst
,
15
isl_dim_param
,
16
isl_dim_in
,
17
isl_dim_out
,
18
isl_dim_set
=
isl_dim_out
,
19
isl_dim_div
,
20
isl_dim_all
21
};
22
23
#if defined(__cplusplus)
24
}
25
#endif
26
27
#endif