diff options
author | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-07-13 11:55:06 -0700 |
---|---|---|
committer | Clément Pit--Claudel <clement.pitclaudel@live.com> | 2015-07-13 11:55:06 -0700 |
commit | 6dfa82655aa7cb35bae6904e05887cdf960c6319 (patch) | |
tree | fcc960db0cce120eccce3fb4be52edf9ff9325c3 /Test/dafny1 | |
parent | 64495ae998749da057b3a717aba6ef53a3e8006e (diff) |
Fix multiple tests that relied on z3 triggering on $Box
Found by enabling auto-generated triggers and looking for failing tests
Diffstat (limited to 'Test/dafny1')
-rw-r--r-- | Test/dafny1/BDD.dfy | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Test/dafny1/BDD.dfy b/Test/dafny1/BDD.dfy index 252164db..59dc3092 100644 --- a/Test/dafny1/BDD.dfy +++ b/Test/dafny1/BDD.dfy @@ -55,6 +55,7 @@ module SimpleBDD node := if s[n-i] then node.t else node.f;
i := i - 1;
}
+ assert s[n-i..] == [];
b := node.b;
}
}
|