summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/Check.cs
diff options
context:
space:
mode:
authorGravatar tabarbe <unknown>2010-08-20 16:02:20 +0000
committerGravatar tabarbe <unknown>2010-08-20 16:02:20 +0000
commit27cc9c245d21151a78c95cead4801ad130557743 (patch)
treeb94c391b40ae7bc154891809dfe70f142137349b /Source/VCGeneration/Check.cs
parent0539cca7cc85df57f171b33d8a3cd204b9fb9fa8 (diff)
Boogie: Fixed some doubly-inherited-contract occurrences.
Diffstat (limited to 'Source/VCGeneration/Check.cs')
-rw-r--r--Source/VCGeneration/Check.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/VCGeneration/Check.cs b/Source/VCGeneration/Check.cs
index a17cea23..d5505dd4 100644
--- a/Source/VCGeneration/Check.cs
+++ b/Source/VCGeneration/Check.cs
@@ -563,10 +563,10 @@ public abstract VCExpressionGenerator VCExprGen { get; }
throw new NotImplementedException();
}
}
- public override void BeginCheck(string descriptiveName, VCExpr vc, ErrorHandler handler){Contract.Requires(descriptiveName != null); Contract.Requires(vc != null);Contract.Requires(handler != null);throw new NotImplementedException();}
+ public override void BeginCheck(string descriptiveName, VCExpr vc, ErrorHandler handler){/*Contract.Requires(descriptiveName != null);*/ Contract.Requires(vc != null);Contract.Requires(handler != null);throw new NotImplementedException();}
[NoDefaultContract]
public override Outcome CheckOutcome(ErrorHandler handler){
- Contract.Requires(handler != null);
+ //Contract.Requires(handler != null);
Contract.EnsuresOnThrow< UnexpectedProverOutputException>(true);
throw new NotImplementedException();}
}