summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/FixedpointVC.cs
diff options
context:
space:
mode:
authorGravatar Ken McMillan <unknown>2013-11-09 15:40:17 -0800
committerGravatar Ken McMillan <unknown>2013-11-09 15:40:17 -0800
commit0172a2eeb76fafd8aaabd34934b41eca15282956 (patch)
tree8f0b106fd6c98d980630c20c7f8e101487239cc9 /Source/VCGeneration/FixedpointVC.cs
parentda2344988055819e33a8737bfdf5e1c6a2bbd0fe (diff)
handling timeouts for fixedpoint engines
Diffstat (limited to 'Source/VCGeneration/FixedpointVC.cs')
-rw-r--r--Source/VCGeneration/FixedpointVC.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/FixedpointVC.cs b/Source/VCGeneration/FixedpointVC.cs
index 19feabe9..e5bcbc22 100644
--- a/Source/VCGeneration/FixedpointVC.cs
+++ b/Source/VCGeneration/FixedpointVC.cs
@@ -109,7 +109,7 @@ namespace Microsoft.Boogie
program = _program;
gen = ctx;
if(old_checker == null)
- checker = new Checker(this, program, logFilePath, appendLogFile, 0, null);
+ checker = new Checker(this, program, logFilePath, appendLogFile, CommandLineOptions.Clo.ProverKillTime, null);
else {
checker = old_checker;
checker.Retarget(program,checker.TheoremProver.Context);