summaryrefslogtreecommitdiff
path: root/Source/Provers/Simplify
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Provers/Simplify')
-rw-r--r--Source/Provers/Simplify/Prover.cs2
-rw-r--r--Source/Provers/Simplify/ProverInterface.cs2
2 files changed, 2 insertions, 2 deletions
diff --git a/Source/Provers/Simplify/Prover.cs b/Source/Provers/Simplify/Prover.cs
index b789e588..e4a72a89 100644
--- a/Source/Provers/Simplify/Prover.cs
+++ b/Source/Provers/Simplify/Prover.cs
@@ -507,7 +507,7 @@ namespace Microsoft.Boogie.Simplify {
protected override void DoBeginCheck(string descriptiveName, string formula) {
//Contract.Requires(descriptiveName != null);
- Contract.Requires(formula != null);
+ //Contract.Requires(formula != null);
//simplify.Refresh();
//this.Comment("@@@@ Virtual Memory: " + simplify.PeakVirtualMemorySize64);
//this.Comment("@@@@ Working Set: " + simplify.PeakWorkingSet64);
diff --git a/Source/Provers/Simplify/ProverInterface.cs b/Source/Provers/Simplify/ProverInterface.cs
index d300a685..1f563c0f 100644
--- a/Source/Provers/Simplify/ProverInterface.cs
+++ b/Source/Provers/Simplify/ProverInterface.cs
@@ -384,7 +384,7 @@ namespace Microsoft.Boogie.Simplify {
public override void BeginCheck(string descriptiveName, VCExpr vc, ErrorHandler handler) {
//Contract.Requires(descriptiveName != null);
//Contract.Requires(vc != null);
- Contract.Requires(handler != null);
+ //Contract.Requires(handler != null);
this.NewProblem(descriptiveName);
this.proverException = null;