summaryrefslogtreecommitdiff
path: root/Source/Provers/Simplify
diff options
context:
space:
mode:
authorGravatar rustanleino <unknown>2010-10-12 00:13:50 +0000
committerGravatar rustanleino <unknown>2010-10-12 00:13:50 +0000
commit4fc18b2fe45c9a29cb0b8fe93d3102cec9c83194 (patch)
treea324eff1a6d8266938943a038450ce4eb790810b /Source/Provers/Simplify
parentc830dff64feadac2f6aa8e0f2a7e647bf3d690f1 (diff)
Boogie:
* enhanced the printing of captured states * addressed some warnings issued by VS 2010 * some code formatting
Diffstat (limited to 'Source/Provers/Simplify')
-rw-r--r--Source/Provers/Simplify/ProverInterface.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Provers/Simplify/ProverInterface.cs b/Source/Provers/Simplify/ProverInterface.cs
index 1f563c0f..1d7bdbb3 100644
--- a/Source/Provers/Simplify/ProverInterface.cs
+++ b/Source/Provers/Simplify/ProverInterface.cs
@@ -757,6 +757,10 @@ namespace Microsoft.Boogie.Simplify {
//Contract.Requires(var != null);
Contract.Ensures(Contract.Result<string>() != null);
+ VCExprVar v = AxBuilder.TryTyped2Untyped(var);
+ if (v != null) {
+ var = v;
+ }
return Namer.Lookup(var);
}