From 02e2b99ab18659ea2626e2be5fa369b7f1795334 Mon Sep 17 00:00:00 2001 From: chmaria Date: Sat, 1 Nov 2014 14:59:23 +0100 Subject: Minor fix in test dafny2/SnapshotableTrees.dfy. --- Test/dafny2/SnapshotableTrees.dfy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Test/dafny2/SnapshotableTrees.dfy b/Test/dafny2/SnapshotableTrees.dfy index 96d3707f..b64660b3 100644 --- a/Test/dafny2/SnapshotableTrees.dfy +++ b/Test/dafny2/SnapshotableTrees.dfy @@ -1,4 +1,4 @@ -// RUN: %dafny /compile:0 /dprint:"%t.dprint" /vcsMaxKeepGoingSplits:10 "%s" > "%t" +// RUN: %dafny /compile:0 /dprint:"%t.dprint" "%s" > "%t" // RUN: %diff "%s.expect" "%t" // Rustan Leino, September 2011. @@ -266,7 +266,7 @@ class Node if (left == n.left) { r, pos := n, -1; } else { - // assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data; + assert n.left != null ==> forall e :: e in n.left.Contents ==> e < n.data; // assert forall e :: e in left.Contents ==> e < n.data; r := new Node.Build(left, n.data, n.right); } -- cgit v1.2.3