Skip to content

Commit 09527ae

Browse files
committed
chain benchmark
1 parent ccd3311 commit 09527ae

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

benchmarks/cav21/geo1.pgcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// ARGS: --post c --pre "c+1" --checker both
1+
// ARGS: --post "c" --pre "c+1" --checker both
22

33
nat c;
44
nat f;

benchmarks/chain1.pgcl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
// ARGS: --post "[c=1]" --pre "[c=0 & x<=99]*(999/1000 - 1/1000*x) + [c=1]" --checker kind
2+
3+
nat c;
4+
nat x;
5+
6+
while(c=0 & x<=99){
7+
{c := 1}[0.01]{x := x+1}
8+
}

0 commit comments

Comments
 (0)