diff options
author | rustanleino <unknown> | 2010-03-13 03:30:09 +0000 |
---|---|---|
committer | rustanleino <unknown> | 2010-03-13 03:30:09 +0000 |
commit | d83d1f3813e2765db4e3855adcb10fc3319a737f (patch) | |
tree | e6291ebf6ab4993644926825d8e35379ef05a002 /Source/VCGeneration/VC.ssc | |
parent | c48d205507068bcce227645acc7a07add0561820 (diff) |
Dafny: Added definedness checks for all statements (previously, some were missing)
Boogie: Added {:subsumption <n>} attribute to assert statements, which overrides the /subsumption command-line setting
Diffstat (limited to 'Source/VCGeneration/VC.ssc')
-rw-r--r-- | Source/VCGeneration/VC.ssc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/VC.ssc b/Source/VCGeneration/VC.ssc index 5c844953..ee5d3d10 100644 --- a/Source/VCGeneration/VC.ssc +++ b/Source/VCGeneration/VC.ssc @@ -40,7 +40,7 @@ namespace VC {
Expr! expr = assrt.Expr;
- switch (CommandLineOptions.Clo.UseSubsumption) {
+ switch (Wlp.Subsumption(assrt)) {
case CommandLineOptions.SubsumptionOption.Never:
expr = Expr.True;
break;
|