From c14d705d57c1dfcee481367bd6744feb6774dfae Mon Sep 17 00:00:00 2001 From: Rustan Leino Date: Wed, 6 Jan 2016 18:56:02 -0800 Subject: Added flying robots example to test suite --- Test/VerifyThis2015/Problem2.dfy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Test/VerifyThis2015') 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; -- cgit v1.2.3