summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Rustan Leino <leino@microsoft.com>2011-11-08 09:06:24 -0800
committerGravatar Rustan Leino <leino@microsoft.com>2011-11-08 09:06:24 -0800
commit518ee639d4f86bcd8a547179696a4bd28770188a (patch)
tree085982a46ace08d73b8561ce7399a276725de148
parent7f9451bace61c013a694c829a39f29a691c7bf9f (diff)
Dafny: Cleaned up proof of RevConcat in test case
-rw-r--r--Test/dafny1/Rippling.dfy2
1 files changed, 0 insertions, 2 deletions
diff --git a/Test/dafny1/Rippling.dfy b/Test/dafny1/Rippling.dfy
index c9a9f3b7..211afd83 100644
--- a/Test/dafny1/Rippling.dfy
+++ b/Test/dafny1/Rippling.dfy
@@ -602,7 +602,6 @@ ghost method Lemma_RevConcat(xs: List, ys: List)
case Nil =>
assert forall ws :: concat(ws, Nil) == ws;
case Cons(t, rest) =>
- Lemma_RevConcat(rest, ys);
assert forall a, b, c :: concat(a, concat(b, c)) == concat(concat(a, b), c);
}
}
@@ -614,6 +613,5 @@ ghost method Theorem(xs: List)
case Nil =>
case Cons(t, rest) =>
Lemma_RevConcat(reverse(rest), Cons(t, Nil));
- Theorem(rest);
}
}