summaryrefslogtreecommitdiff
path: root/Source/VCGeneration
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2012-04-01 21:41:01 -0700
committerGravatar qadeer <qadeer@microsoft.com>2012-04-01 21:41:01 -0700
commitbffd3305c235c5605d632a4a438ec563fad731e6 (patch)
tree355c02c100239db60447b118a3c3647de9dc54f5 /Source/VCGeneration
parentcfbb83ff12549044fa0ed9e143ee0a54fcef24d5 (diff)
parent77efe1a87022f80b01cfc9f01a7bf3241ea95b7a (diff)
Merge
Diffstat (limited to 'Source/VCGeneration')
-rw-r--r--Source/VCGeneration/Check.cs2
-rw-r--r--Source/VCGeneration/StratifiedVC.cs3
2 files changed, 2 insertions, 3 deletions
diff --git a/Source/VCGeneration/Check.cs b/Source/VCGeneration/Check.cs
index 5702111d..832d4430 100644
--- a/Source/VCGeneration/Check.cs
+++ b/Source/VCGeneration/Check.cs
@@ -824,7 +824,7 @@ namespace Microsoft.Boogie {
}
// (check-sat + get-unsat-core)
- public virtual void CheckAssumptions(List<VCExpr> assumptions, out List<int> unsatCore)
+ public virtual Outcome CheckAssumptions(List<VCExpr> assumptions, out List<int> unsatCore)
{
throw new NotImplementedException();
}
diff --git a/Source/VCGeneration/StratifiedVC.cs b/Source/VCGeneration/StratifiedVC.cs
index fd153e11..013d7900 100644
--- a/Source/VCGeneration/StratifiedVC.cs
+++ b/Source/VCGeneration/StratifiedVC.cs
@@ -1161,8 +1161,7 @@ namespace VC
TheoremProver.Push();
TheoremProver.AssertAxioms();
- TheoremProver.CheckAssumptions(assumptions, out unsatCore);
- ProverInterface.Outcome outcome = TheoremProver.CheckOutcomeCore(reporter);
+ ProverInterface.Outcome outcome = TheoremProver.CheckAssumptions(assumptions, out unsatCore);
TheoremProver.Pop();
numQueries++;