summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2014-02-23 12:24:18 -0800
committerGravatar qadeer <unknown>2014-02-23 12:24:18 -0800
commit4990bcec2f5c90dae5e55f4d664dec10e813fa6a (patch)
treee60e886b5f2d339cca4f5f9e31f38932c40439a2 /Source/Core/CommandLineOptions.cs
parente9479462bfb93795a827af752c28c04386c429b5 (diff)
Added /trustPhasesUpto option
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs8
1 files changed, 8 insertions, 0 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index 88d78fa9..0d254ab7 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -489,6 +489,7 @@ namespace Microsoft.Boogie {
public string OwickiGriesDesugaredOutputFile = null;
public bool TrustAtomicityTypes = false;
+ public int TrustPhasesUpto = -1;
public enum VCVariety {
Structured,
@@ -734,6 +735,13 @@ namespace Microsoft.Boogie {
}
return true;
+ case "trustPhasesUpto":
+ if (ps.ConfirmArgumentCount(1))
+ {
+ ps.GetNumericArgument(ref TrustPhasesUpto);
+ }
+ return true;
+
case "proverLog":
if (ps.ConfirmArgumentCount(1)) {
SimplifyLogFilePath = args[ps.i];