From 172554c51fad4092f2b4e52a921ad0e86fa67ca6 Mon Sep 17 00:00:00 2001 From: Rustan Leino Date: Wed, 6 Mar 2013 15:09:04 -0800 Subject: Renamed "parallel" statement to "forall" statement, and made the parentheses around the bound variables optional. --- Test/VSI-Benchmarks/b5.dfy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Test/VSI-Benchmarks') diff --git a/Test/VSI-Benchmarks/b5.dfy b/Test/VSI-Benchmarks/b5.dfy index 612b96ba..53d82207 100644 --- a/Test/VSI-Benchmarks/b5.dfy +++ b/Test/VSI-Benchmarks/b5.dfy @@ -57,12 +57,12 @@ class Queue { tail.next := n; tail := n; - parallel (m | m in spine) { + forall m | m in spine { m.tailContents := m.tailContents + [t]; } contents := head.tailContents; - parallel (m | m in spine) { + forall m | m in spine { m.footprint := m.footprint + n.footprint; } footprint := footprint + n.footprint; -- cgit v1.2.3