summaryrefslogtreecommitdiff
path: root/Source/BoogieDriver
diff options
context:
space:
mode:
authorGravatar Unknown <akashl@MSRI-Akashlal.fareast.corp.microsoft.com>2011-06-25 17:23:28 +0530
committerGravatar Unknown <akashl@MSRI-Akashlal.fareast.corp.microsoft.com>2011-06-25 17:23:28 +0530
commit3f4c65b26ce7771eeb1ef738eb65ef63be62a617 (patch)
treec71ebbf68a3dcbcdf3112dd9cf7bbb05d31555b2 /Source/BoogieDriver
parent94bdde55d8922e2e76fe8d7dd6d871a42d5f229b (diff)
Avoid restarting the theorem prover for stratified inlining because it
can lose context. Added a cache for FindLeastToVerify
Diffstat (limited to 'Source/BoogieDriver')
-rw-r--r--Source/BoogieDriver/BoogieDriver.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/BoogieDriver/BoogieDriver.cs b/Source/BoogieDriver/BoogieDriver.cs
index dcc007fe..88d8bdaa 100644
--- a/Source/BoogieDriver/BoogieDriver.cs
+++ b/Source/BoogieDriver/BoogieDriver.cs
@@ -512,6 +512,12 @@ namespace Microsoft.Boogie {
}
outcome = svcgen.FindLeastToVerify(impl, program, ref ss);
errors = new List<Counterexample>();
+ Console.Write("Result: ");
+ foreach (var s in ss)
+ {
+ Console.Write("{0} ", s);
+ }
+ Console.WriteLine();
}
else
{