summaryrefslogtreecommitdiff
path: root/Source/Provers/Z3api/SafeContext.cs
diff options
context:
space:
mode:
authorGravatar akashlal <unknown>2010-11-24 15:06:01 +0000
committerGravatar akashlal <unknown>2010-11-24 15:06:01 +0000
commit33f70b6f2cd61c6893b80e23f6abb0b4ca9c0650 (patch)
tree80d81e57b08e4fd92ba70bbe4509921b0432400a /Source/Provers/Z3api/SafeContext.cs
parent25aff54c2d8862700e91638acd043f0ac5cb264f (diff)
Some changes to the prover interface to make way for z3-api.
Diffstat (limited to 'Source/Provers/Z3api/SafeContext.cs')
-rw-r--r--Source/Provers/Z3api/SafeContext.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Provers/Z3api/SafeContext.cs b/Source/Provers/Z3api/SafeContext.cs
index 76c0b957..addfa613 100644
--- a/Source/Provers/Z3api/SafeContext.cs
+++ b/Source/Provers/Z3api/SafeContext.cs
@@ -111,6 +111,7 @@ namespace Microsoft.Boogie.Z3
this.namer = new UniqueNamer();
this.z3.SetPrintMode(PrintMode.SmtlibFull);
this.z3log = null;
+
try
{
if (config.LogFilename != null)
@@ -358,6 +359,7 @@ namespace Microsoft.Boogie.Z3
public ProverInterface.Outcome Check(out List<Z3ErrorModelAndLabels> boogieErrors)
{
+ Microsoft.Boogie.Helpers.ExtraTraceInformation("Sending data to the theorem prover");
boogieErrors = new List<Z3ErrorModelAndLabels>();
LBool outcome = LBool.Undef;
while (boogieErrors.Count < this.config.Counterexamples)