summaryrefslogtreecommitdiff
path: root/Test/og/termination2.bpl
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2014-11-14 22:18:15 -0800
committerGravatar qadeer <unknown>2014-11-14 22:18:15 -0800
commit72d74c23e9c5cc1903f2646af6a7d778cfde53f3 (patch)
tree42b738427237ff44692051f028fb92a427c3cd1b /Test/og/termination2.bpl
parent0339351e985c455e7ecf290be54aa5361fe7ae8f (diff)
renamed :phase to :layer
Diffstat (limited to 'Test/og/termination2.bpl')
-rw-r--r--Test/og/termination2.bpl10
1 files changed, 5 insertions, 5 deletions
diff --git a/Test/og/termination2.bpl b/Test/og/termination2.bpl
index d0d88a22..840c27c1 100644
--- a/Test/og/termination2.bpl
+++ b/Test/og/termination2.bpl
@@ -1,19 +1,19 @@
// RUN: %boogie -noinfer -typeEncoding:m -useArrayTheory "%s" > "%t"
// RUN: %diff "%s.expect" "%t"
-procedure {:yields} {:phase 0} X();
+procedure {:yields} {:layer 0} X();
ensures {:atomic} |{ A: return true; }|;
-procedure {:yields} {:phase 0} Y();
+procedure {:yields} {:layer 0} Y();
ensures {:left} |{ A: return true; }|;
-procedure {:yields} {:phase 1} main() {
+procedure {:yields} {:layer 1} main() {
yield;
call X();
while (*)
- invariant {:terminates} {:phase 1} true;
+ invariant {:terminates} {:layer 1} true;
{
call Y();
}
yield;
- assert {:phase 1} true;
+ assert {:layer 1} true;
}