summaryrefslogtreecommitdiff
path: root/Test/VerifyThis2015
diff options
context:
space:
mode:
authorGravatar Rustan Leino <unknown>2016-01-06 18:56:02 -0800
committerGravatar Rustan Leino <unknown>2016-01-06 18:56:02 -0800
commitc14d705d57c1dfcee481367bd6744feb6774dfae (patch)
tree088b1265babf234ecef3ce92fc7dbcf3edf4d3e6 /Test/VerifyThis2015
parent817d28da901dc8d285c8e7f86f25496093fd6af2 (diff)
Added flying robots example to test suite
Diffstat (limited to 'Test/VerifyThis2015')
-rw-r--r--Test/VerifyThis2015/Problem2.dfy2
1 files changed, 1 insertions, 1 deletions
diff --git a/Test/VerifyThis2015/Problem2.dfy b/Test/VerifyThis2015/Problem2.dfy
index 86b4a019..2bb63e7b 100644
--- a/Test/VerifyThis2015/Problem2.dfy
+++ b/Test/VerifyThis2015/Problem2.dfy
@@ -114,7 +114,7 @@ method ParallelGcd(A: int, B: int) returns (gcd: int)
var pc0, pc1 := 0, 0; // program counter for the two processes
var a0, b0, a1, b1; // local variables for the two processes
// To model fairness of scheduling, these "budget" variable give a bound on the number of times the
- // scheduler will repeatedly schedule on process to execute its "compare a and b" test. When a
+ // scheduler will repeatedly schedule one process to execute its "compare a and b" test. When a
// process executes its comparison, its budget is decreased and the budget for the other process
// is set to some arbitrary positive amount.
var budget0, budget1 :| budget0 > 0 && budget1 > 0;