summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2014-11-14 22:18:15 -0800
committerGravatar qadeer <unknown>2014-11-14 22:18:15 -0800
commit72d74c23e9c5cc1903f2646af6a7d778cfde53f3 (patch)
tree42b738427237ff44692051f028fb92a427c3cd1b /Source/Core/CommandLineOptions.cs
parent0339351e985c455e7ecf290be54aa5361fe7ae8f (diff)
renamed :phase to :layer
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index f938b0f8..01212da1 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -505,8 +505,8 @@ namespace Microsoft.Boogie {
public string OwickiGriesDesugaredOutputFile = null;
public bool TrustAtomicityTypes = false;
public bool TrustNonInterference = false;
- public int TrustPhasesUpto = -1;
- public int TrustPhasesDownto = int.MaxValue;
+ public int TrustLayersUpto = -1;
+ public int TrustLayersDownto = int.MaxValue;
public enum VCVariety {
Structured,
@@ -766,17 +766,17 @@ namespace Microsoft.Boogie {
}
return true;
- case "trustPhasesUpto":
+ case "trustLayersUpto":
if (ps.ConfirmArgumentCount(1))
{
- ps.GetNumericArgument(ref TrustPhasesUpto);
+ ps.GetNumericArgument(ref TrustLayersUpto);
}
return true;
- case "trustPhasesDownto":
+ case "trustLayersDownto":
if (ps.ConfirmArgumentCount(1))
{
- ps.GetNumericArgument(ref TrustPhasesDownto);
+ ps.GetNumericArgument(ref TrustLayersDownto);
}
return true;