summaryrefslogtreecommitdiff
path: root/Test/dafny0
diff options
context:
space:
mode:
authorGravatar rustanleino <unknown>2009-08-07 17:21:13 +0000
committerGravatar rustanleino <unknown>2009-08-07 17:21:13 +0000
commitfaf1c46b1e67ab4c3d8a1c82974b0499015a83d3 (patch)
tree923bae2639dd557a9fed921135cca78911cef619 /Test/dafny0
parent46b654cd5c5a0dc3df37d9a593fa5c81c59ab83f (diff)
Removed Output files. These are created on a local machine when the tests are run.
Diffstat (limited to 'Test/dafny0')
-rw-r--r--Test/dafny0/Output100
1 files changed, 0 insertions, 100 deletions
diff --git a/Test/dafny0/Output b/Test/dafny0/Output
deleted file mode 100644
index 64c43c87..00000000
--- a/Test/dafny0/Output
+++ /dev/null
@@ -1,100 +0,0 @@
-
--------------------- Simple.dfy --------------------
-// synthetic program
-
-class MyClass<T, U> {
- var x: int;
-
- method M(s: bool, lotsaObjects: set<object>)
- returns (t: object, u: set<int>, v: seq<MyClass<bool,U>>):
- requires s;
- modifies this;
- modifies lotsaObjects;
- ensures t == t;
- ensures old(null) != this;
- {
- x := 12;
- while (x < 100)
- invariant x <= 100;
- {
- x := x + 17;
- if (x % 20 == 3) {
- x := this.x + 1;
- } else {
- this.x := x + 0;
- }
- call t, u, v := M(true, lotsaObjects)
- var to: MyClass<T,U>;
- call to, u, v := M(true, lotsaObjects)
- call to, u, v := to.M(true, lotsaObjects)
- }
- }
-}
-
-Dafny program verifier finished with 0 verified, 0 errors
-
--------------------- BQueue.bpl --------------------
-
-Boogie program verifier finished with 8 verified, 0 errors
-
--------------------- SmallTests.dfy --------------------
-
-Dafny program verifier finished with 3 verified, 0 errors
-
--------------------- Queue.dfy --------------------
-
-Dafny program verifier finished with 12 verified, 0 errors
-
--------------------- ListCopy.dfy --------------------
-
-Dafny program verifier finished with 2 verified, 0 errors
-
--------------------- BinaryTree.dfy --------------------
-
-Dafny program verifier finished with 13 verified, 0 errors
-
--------------------- ListReverse.dfy --------------------
-
-Dafny program verifier finished with 1 verified, 0 errors
-
--------------------- ListContents.dfy --------------------
-
-Dafny program verifier finished with 5 verified, 0 errors
-
--------------------- SchorrWaite.dfy --------------------
-
-Dafny program verifier finished with 4 verified, 0 errors
-
--------------------- Termination.dfy --------------------
-
-Dafny program verifier finished with 5 verified, 0 errors
-
--------------------- Use.dfy --------------------
-Use.dfy(12,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-Use.dfy(25,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-Use.dfy(50,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-
-Dafny program verifier finished with 6 verified, 3 errors
-
--------------------- DTypes.dfy --------------------
-DTypes.dfy(15,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-DTypes.dfy(28,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-DTypes.dfy(54,5): Error BP5001: This assertion might not hold.
-Execution trace:
- (0,0): anon0
-
-Dafny program verifier finished with 5 verified, 3 errors
-
--------------------- TypeParameters.dfy --------------------
-
-Dafny program verifier finished with 3 verified, 0 errors