summaryrefslogtreecommitdiff
path: root/Source/Provers/Z3/Prover.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Provers/Z3/Prover.cs')
-rw-r--r--Source/Provers/Z3/Prover.cs6
1 files changed, 0 insertions, 6 deletions
diff --git a/Source/Provers/Z3/Prover.cs b/Source/Provers/Z3/Prover.cs
index 640f98ae..8929e732 100644
--- a/Source/Provers/Z3/Prover.cs
+++ b/Source/Provers/Z3/Prover.cs
@@ -84,9 +84,6 @@ namespace Microsoft.Boogie.Z3
StringBuilder cmdLineArgsBldr = new StringBuilder();
AppendCmdLineOption(cmdLineArgsBldr, "si");
- if (CommandLineOptions.Clo.LazyInlining == 2)
- AppendCmdLineOption(cmdLineArgsBldr, "nw");
-
if (CommandLineOptions.Clo.z3AtFlag)
AppendCmdLineOption(cmdLineArgsBldr, "@");
@@ -165,9 +162,6 @@ namespace Microsoft.Boogie.Z3
AddOption(result, "BV_REFLECT", "true");
}
- if (CommandLineOptions.Clo.LazyInlining == 2)
- AddOption(result, "MACRO_EXPANSION", "true");
-
foreach (string opt in CommandLineOptions.Clo.Z3Options) {
Contract.Assert(opt != null);
int eq = opt.IndexOf("=");