summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
authorGravatar Ally Donaldson <unknown>2014-01-17 10:24:32 +0000
committerGravatar Ally Donaldson <unknown>2014-01-17 10:24:32 +0000
commit16bc038b94f93c37ce5ecd1ba0cbeff1a3aa5ec7 (patch)
tree41e095c8f75e7bc396fb8a12d57d6a3ec798252e /Source/Core/CommandLineOptions.cs
parent575e70d7a165be5dfe207dd2d7dcd764922237da (diff)
Integrated support for k-induction, implemented a while ago by Philipp Ruemmer but never previously committed.
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs5
1 files changed, 5 insertions, 0 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index da2c3a99..09549e55 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -417,6 +417,7 @@ namespace Microsoft.Boogie {
public bool SoundnessSmokeTest = false;
public string Z3ExecutablePath = null;
public string CVC4ExecutablePath = null;
+ public int KInductionDepth = -1;
public enum ProverWarnings {
None,
@@ -1316,6 +1317,10 @@ namespace Microsoft.Boogie {
}
return true;
+ case "kInductionDepth":
+ ps.GetNumericArgument(ref KInductionDepth);
+ return true;
+
default:
bool optionValue = false;
if (ps.CheckBooleanFlag("printUnstructured", ref optionValue)) {