summaryrefslogtreecommitdiff
path: root/Source/Dafny/Printer.cs
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-17 09:37:47 -0700
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-17 09:37:47 -0700
commitdb9821ac440cdfa817049ab83c2e94f861ff429d (patch)
treecfbb6ed0d116f764474ba4e07c4b406fa6916e4a /Source/Dafny/Printer.cs
parenta07b43ac03b38d4af575d1a1df48339ad228751a (diff)
Review preceding commit with Rustan
Diffstat (limited to 'Source/Dafny/Printer.cs')
-rw-r--r--Source/Dafny/Printer.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/Source/Dafny/Printer.cs b/Source/Dafny/Printer.cs
index 43b69bbb..7c684fde 100644
--- a/Source/Dafny/Printer.cs
+++ b/Source/Dafny/Printer.cs
@@ -1730,8 +1730,7 @@ namespace Microsoft.Dafny {
} else if (expr is QuantifierExpr) {
QuantifierExpr e = (QuantifierExpr)expr;
- if (e.SplitQuantifier != null) {
- // CLEMENT TODO TRIGGERS: Should (do) we have a setting to print the original forms instead of rewritten forms?
+ if (DafnyOptions.O.DafnyPrintResolvedFile != null && e.SplitQuantifier != null) {
PrintExpr(e.SplitQuantifierExpression, contextBindingStrength, fragileContext, isRightmost, isFollowedBySemicolon, indent, resolv_count);
return;
}