repo.or.cz
/
ppn.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
pn2adg.cc: edge_name: allocate enough space for edge name
[ppn.git]
/
tests
/
inputs
/
disconnected.c
blob
893e750300fe1f9fcd13da83d9f64ca4a2acf01b
1
void
F2
(
int
);
2
int
F1
(
int
);
3
int
t
(
int
);
4
5
int
N
=
20
;
6
#pragma parameter N 7 21
7
8
int
main
(
void
)
9
{
10
int
state
;
11
12
state
=
0
;
13
F2
(
state
);
14
15
for
(
int
i
=
0
;
i
<
N
;
i
++) {
16
if
(
t
(
i
)) {
17
state
=
F1
(
i
);
18
F2
(
state
);
19
}
20
}
21
22
return
0
;
23
}