summaryrefslogtreecommitdiff
path: root/Source/VCGeneration
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-07-12 16:29:30 -0700
committerGravatar wuestholz <unknown>2013-07-12 16:29:30 -0700
commitfb7ba0533f976442e53a4180a988ac7e2bb5c777 (patch)
tree5ac09f7787d16144c5f08c83da2541aaf55f3f72 /Source/VCGeneration
parent714a571fee581fca2c46cf7debd9743ca1095eec (diff)
Added an attribute to set the time limit for implementations.
Diffstat (limited to 'Source/VCGeneration')
-rw-r--r--Source/VCGeneration/VC.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/VC.cs b/Source/VCGeneration/VC.cs
index 89bcdbfa..80ffa072 100644
--- a/Source/VCGeneration/VC.cs
+++ b/Source/VCGeneration/VC.cs
@@ -1495,7 +1495,7 @@ namespace VC {
{
var timeout = (keep_going && s.LastChance) ? CommandLineOptions.Clo.VcsFinalAssertTimeout :
keep_going ? CommandLineOptions.Clo.VcsKeepGoingTimeout :
- CommandLineOptions.Clo.ProverKillTime;
+ impl.TimeLimit;
var checker = s.parent.FindCheckerFor(timeout, false);
if (checker == null)