summaryrefslogtreecommitdiff
path: root/Source/Provers/SMTLib/Z3.cs
diff options
context:
space:
mode:
authorGravatar Ken McMillan <unknown>2013-11-11 15:06:08 -0800
committerGravatar Ken McMillan <unknown>2013-11-11 15:06:08 -0800
commit479fe0571200196552e3d415ab3b90e30083b1b2 (patch)
treeecc2fbc7fd64268b21493d7feb3218547767355f /Source/Provers/SMTLib/Z3.cs
parent334d29e2e34647caa2defd9cd0d329e1e9f0dfd3 (diff)
Fixedpoint VC catch up with recent changes
Diffstat (limited to 'Source/Provers/SMTLib/Z3.cs')
-rw-r--r--Source/Provers/SMTLib/Z3.cs6
1 files changed, 5 insertions, 1 deletions
diff --git a/Source/Provers/SMTLib/Z3.cs b/Source/Provers/SMTLib/Z3.cs
index 8dfa8371..ed8f0908 100644
--- a/Source/Provers/SMTLib/Z3.cs
+++ b/Source/Provers/SMTLib/Z3.cs
@@ -350,9 +350,13 @@ namespace Microsoft.Boogie.SMTLib
options.AddWeakSmtOption("ARRAY_WEAK", "true");
options.AddWeakSmtOption("ARRAY_EXTENSIONAL", "false");
}
+
+ options.AddWeakSmtOption("MODEL_ON_TIMEOUT", "true");
+
}
- options.AddWeakSmtOption("MODEL_ON_TIMEOUT", "true");
+ // KLM: don't add Z3 options here. The options are different in different Z3 versions.
+ // Add options in the above condition for the appropriate version.
// legacy option handling
if (!CommandLineOptions.Clo.z3AtFlag)