summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGravatar Ken McMillan <kenmcmil@microsoft.com>2015-06-15 14:19:46 -0700
committerGravatar Ken McMillan <kenmcmil@microsoft.com>2015-06-15 14:19:46 -0700
commit4e9171d2b0dad5ea640ad781461a30910fbd73e5 (patch)
treed99f3f9af9980b918d0d88a53c34e579b85a4159 /Source/Core
parent0e851041485039a07684e0db5b584cd1237d3dfd (diff)
adding z3name option
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/CommandLineOptions.cs10
1 files changed, 9 insertions, 1 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index b57ea02a..309aab0e 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -484,6 +484,7 @@ namespace Microsoft.Boogie {
public bool SimplifyLogFileAppend = false;
public bool SoundnessSmokeTest = false;
public string Z3ExecutablePath = null;
+ public string Z3ExecutableName = null;
public string CVC4ExecutablePath = null;
public int KInductionDepth = -1;
@@ -1551,8 +1552,15 @@ namespace Microsoft.Boogie {
Z3ExecutablePath = args[ps.i];
}
return true;
+ // This sets name of z3 binary boogie binary directory, not path
+ case "z3name":
+ if (ps.ConfirmArgumentCount(1))
+ {
+ Z3ExecutableName = args[ps.i];
+ }
+ return true;
- case "cvc4exe":
+ case "cvc4exe":
if (ps.ConfirmArgumentCount(1)) {
CVC4ExecutablePath = args[ps.i];
}