summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/FixedpointVC.cs
diff options
context:
space:
mode:
authorGravatar Ken McMillan <unknown>2014-10-08 13:44:14 -0700
committerGravatar Ken McMillan <unknown>2014-10-08 13:44:14 -0700
commit09152de1a52555aa8a41b245dfddd2be56dd2734 (patch)
tree5a880b747e3762d5d9685663ff79476ccf280840 /Source/VCGeneration/FixedpointVC.cs
parente7ca01b8f249c39cdb7ae7d78908f8dab2addff7 (diff)
parent1cca1f3efef31b9eee79bb26a5032da2620a8365 (diff)
Merge FixpointVC changes with mainline
Diffstat (limited to 'Source/VCGeneration/FixedpointVC.cs')
-rw-r--r--Source/VCGeneration/FixedpointVC.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/VCGeneration/FixedpointVC.cs b/Source/VCGeneration/FixedpointVC.cs
index 4b4e970e..7dbf6b05 100644
--- a/Source/VCGeneration/FixedpointVC.cs
+++ b/Source/VCGeneration/FixedpointVC.cs
@@ -1521,6 +1521,7 @@ namespace Microsoft.Boogie
RPFP.Node cex;
varSubst = new Dictionary<int,Dictionary<string,string>>();
+#if false
int origRecursionBound = CommandLineOptions.Clo.RecursionBound;
if (CommandLineOptions.Clo.RecursionBound > 0 && extraRecBound != null)
{
@@ -1532,12 +1533,15 @@ namespace Microsoft.Boogie
}
CommandLineOptions.Clo.RecursionBound += maxExtra;
}
+#endif
ProverInterface.Outcome outcome =
- checker.TheoremProver.CheckRPFP("name", rpfp, handler, out cex, varSubst);
+ checker.TheoremProver.CheckRPFP("name", rpfp, handler, out cex, varSubst, extraRecBound);
cexroot = cex;
+#if false
CommandLineOptions.Clo.RecursionBound = origRecursionBound;
+#endif
Console.WriteLine("solve: {0}s", (DateTime.Now - start).TotalSeconds);