summaryrefslogtreecommitdiff
path: root/Source/DafnyExtension
diff options
context:
space:
mode:
authorGravatar leino <unknown>2014-10-20 17:09:04 -0700
committerGravatar leino <unknown>2014-10-20 17:09:04 -0700
commit12242050fe7069f7dcf4e99f23b14f447e6b55e0 (patch)
tree5fe61d6a1e47d98136cdd83b8a1f9db990aa3433 /Source/DafnyExtension
parent82edb1b179916ee61655ab7e425a17ab5145fac8 (diff)
parent868e3f018e1bfc620e439f55bc22157e1d9fd7ba (diff)
Merge
Diffstat (limited to 'Source/DafnyExtension')
-rw-r--r--Source/DafnyExtension/DafnyDriver.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/DafnyExtension/DafnyDriver.cs b/Source/DafnyExtension/DafnyDriver.cs
index 3d4e7916..e96e0743 100644
--- a/Source/DafnyExtension/DafnyDriver.cs
+++ b/Source/DafnyExtension/DafnyDriver.cs
@@ -224,7 +224,7 @@ namespace DafnyLanguage
public static int ChangeIncrementalVerification(int mode)
{
var old = Dafny.DafnyOptions.Clo.VerifySnapshots;
- if (mode == 1 && old != 0)
+ if (mode == 1 && 1 <= old)
{
// Disable mode 1.
Dafny.DafnyOptions.Clo.VerifySnapshots = 0;