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
add support for generating ASTs from schedule relations
[isl.git]
/
test_inputs
/
codegen
/
cloog
/
dot2.c
blob
f36aae20e22c2d2b749c1269eafc4a31dfe0e7e9
1
{
2
for
(
int
c0
=
1
;
c0
<=
min
(
N
,
M
);
c0
+=
1
) {
3
S1
(
c0
);
4
for
(
int
c1
=
1
;
c1
<=
M
;
c1
+=
1
)
5
S2
(
c0
,
c1
);
6
}
7
for
(
int
c0
=
M
+
1
;
c0
<=
N
;
c0
+=
1
)
8
for
(
int
c1
=
1
;
c1
<=
M
;
c1
+=
1
)
9
S2
(
c0
,
c1
);
10
for
(
int
c0
=
N
+
1
;
c0
<=
M
;
c0
+=
1
)
11
S1
(
c0
);
12
}