summaryrefslogtreecommitdiff
path: root/Source/Core/CommandLineOptions.cs
diff options
context:
space:
mode:
authorGravatar qadeer <qadeer@microsoft.com>2011-06-23 16:17:16 -0700
committerGravatar qadeer <qadeer@microsoft.com>2011-06-23 16:17:16 -0700
commit223a6f22c7723958177505783977fbcc3539de0a (patch)
tree493cd033c42ff0c5493e59810c8331e87460b859 /Source/Core/CommandLineOptions.cs
parent164333f6b9d9d8e81b11368fe7b2ae5e002ce417 (diff)
implementation of iterative LetVC
Diffstat (limited to 'Source/Core/CommandLineOptions.cs')
-rw-r--r--Source/Core/CommandLineOptions.cs4
1 files changed, 4 insertions, 0 deletions
diff --git a/Source/Core/CommandLineOptions.cs b/Source/Core/CommandLineOptions.cs
index 84ecce6d..d2a7de58 100644
--- a/Source/Core/CommandLineOptions.cs
+++ b/Source/Core/CommandLineOptions.cs
@@ -259,6 +259,7 @@ namespace Microsoft.Boogie {
BlockReach,
BlockNestedReach,
Dag,
+ DagIterative,
Doomed,
Unspecified
}
@@ -1049,6 +1050,9 @@ namespace Microsoft.Boogie {
case "dag":
vcVariety = VCVariety.Dag;
break;
+ case "i":
+ vcVariety = VCVariety.DagIterative;
+ break;
case "doomed":
vcVariety = VCVariety.Doomed;
break;