summaryrefslogtreecommitdiff
path: root/Test/dafny1/Substitution.dfy
diff options
context:
space:
mode:
authorGravatar rustanleino <unknown>2010-06-11 02:02:36 +0000
committerGravatar rustanleino <unknown>2010-06-11 02:02:36 +0000
commitd0411d08eba6e800509744dbb9e0b4c380964e9b (patch)
treeb67726e5eb114d28fc8af048344f16ed8eed71bd /Test/dafny1/Substitution.dfy
parent5dddcccf78dbd7752963c5fe9da288697ccd27eb (diff)
Dafny: Added two additional heuristics for guessing missing loop decreases clauses (for loop guard A!=B and for loop guards with multiple conjuncts)
Diffstat (limited to 'Test/dafny1/Substitution.dfy')
-rw-r--r--Test/dafny1/Substitution.dfy1
1 files changed, 0 insertions, 1 deletions
diff --git a/Test/dafny1/Substitution.dfy b/Test/dafny1/Substitution.dfy
index 72415fea..9e4da459 100644
--- a/Test/dafny1/Substitution.dfy
+++ b/Test/dafny1/Substitution.dfy
@@ -96,7 +96,6 @@ static ghost method TheoremSeq(e: Expression, v: int, val: int)
while (j < N)
invariant j <= N;
invariant (forall k :: 0 <= k && k < j ==> seArgs2[k] == seArgs[k]);
- decreases N - j;
{
call TheoremSeq(args[j], v, val);
j := j + 1;