summaryrefslogtreecommitdiff
path: root/Source/Dafny
diff options
context:
space:
mode:
authorGravatar qunyanm <unknown>2016-03-28 12:02:37 -0700
committerGravatar qunyanm <unknown>2016-03-28 12:02:37 -0700
commit91cee1c2028f9ad995df863f2a4568d95f4ea1a8 (patch)
tree21fd26ea940c7cb32758c9cac477c0838c5d07c1 /Source/Dafny
parenta89b9aee05dff74345a79f8fb4fe0fe3fdbb17ad (diff)
Make /autoTriggers:1 to be default. Add /autoTriggers:0 to tests that requires
it. Don't use pretty warning signs since we can't diff them correctly in the test output from the test run.
Diffstat (limited to 'Source/Dafny')
-rw-r--r--Source/Dafny/DafnyOptions.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Dafny/DafnyOptions.cs b/Source/Dafny/DafnyOptions.cs
index f3b38a84..607090eb 100644
--- a/Source/Dafny/DafnyOptions.cs
+++ b/Source/Dafny/DafnyOptions.cs
@@ -66,7 +66,7 @@ namespace Microsoft.Dafny
public bool AllowGlobals = false;
public bool CountVerificationErrors = true;
public bool Optimize = false;
- public bool AutoTriggers = false;
+ public bool AutoTriggers = true;
public bool RewriteFocalPredicates = true;
public bool PrintTooltips = false;
public bool PrintStats = false;
@@ -386,8 +386,8 @@ namespace Microsoft.Dafny
1 (default) - If preprocessing succeeds, set exit code to the number of
verification errors.
/autoTriggers:<n>
- 0 (default) - Do not generate {:trigger} annotations for user-level quantifiers.
- 1 - Add a {:trigger} to each user-level quantifier. Existing
+ 0 - Do not generate {:trigger} annotations for user-level quantifiers.
+ 1 (default) - Add a {:trigger} to each user-level quantifier. Existing
annotations are preserved.
/rewriteFocalPredicates:<n>
0 - Don't rewrite predicates in the body of prefix lemmas.