summaryrefslogtreecommitdiff
path: root/Source/Provers/SMTLib/Z3.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/Provers/SMTLib/Z3.cs
parentda2344988055819e33a8737bfdf5e1c6a2bbd0fe (diff)
handling timeouts for fixedpoint engines
Diffstat (limited to 'Source/Provers/SMTLib/Z3.cs')
-rw-r--r--Source/Provers/SMTLib/Z3.cs1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Provers/SMTLib/Z3.cs b/Source/Provers/SMTLib/Z3.cs
index bc9e6992..1d9ff1c4 100644
--- a/Source/Provers/SMTLib/Z3.cs
+++ b/Source/Provers/SMTLib/Z3.cs
@@ -262,6 +262,7 @@ namespace Microsoft.Boogie.SMTLib
if (options.TimeLimit > 0)
{
options.AddWeakSmtOption("TIMEOUT", options.TimeLimit.ToString());
+ options.AddWeakSmtOption("fixedpoint.TIMEOUT", options.TimeLimit.ToString());
// This kills the Z3 *instance* after the specified time, not a particular query, so we cannot use it.
// options.AddSolverArgument("/T:" + (options.TimeLimit + 1000) / 1000);
}