summaryrefslogtreecommitdiff
path: root/Source/Houdini/Houdini.cs
diff options
context:
space:
mode:
authorGravatar Unknown <qadeer@GHALIB.redmond.corp.microsoft.com>2012-02-06 13:55:42 -0800
committerGravatar Unknown <qadeer@GHALIB.redmond.corp.microsoft.com>2012-02-06 13:55:42 -0800
commit6a1cfac0a8625cb91ab61fc20f06d40c098654c2 (patch)
tree6130df9a4df19a35baf72efbd0a426dab3897a52 /Source/Houdini/Houdini.cs
parent2cfd14bafce9306ec3b62cdd119ccbba5caccac3 (diff)
added more logging in houdini
Diffstat (limited to 'Source/Houdini/Houdini.cs')
-rw-r--r--Source/Houdini/Houdini.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Source/Houdini/Houdini.cs b/Source/Houdini/Houdini.cs
index 1f3909e4..7c043906 100644
--- a/Source/Houdini/Houdini.cs
+++ b/Source/Houdini/Houdini.cs
@@ -1190,6 +1190,12 @@ namespace Microsoft.Boogie.Houdini {
this.NotifyAssignment(current.Assignment);
//check the VC with the current assignment
+ if (CommandLineOptions.Clo.Trace) {
+ Console.WriteLine("Verifying " + session.descriptiveName + " with the following assignment:");
+ foreach (var key in current.Assignment.Keys) {
+ Console.WriteLine(key + " -> " + current.Assignment[key]);
+ }
+ }
outcome = session.Verify(checker, currentAx, out errors);
this.NotifyOutcome(outcome);