@@ -1125,12 +1125,12 @@ class FormatLiteral extends Literal {
11251125 exists ( int dot , int afterdot |
11261126 ( if this .getPrecision ( n ) = 0 then dot = 0 else dot = 1 ) and
11271127 (
1128- (
1129- if this .hasExplicitPrecision ( n )
1130- then afterdot = this . getPrecision ( n )
1131- else not this .hasImplicitPrecision ( n )
1132- ) and
1133- afterdot = 6
1128+ if this . hasExplicitPrecision ( n )
1129+ then afterdot = this .getPrecision ( n )
1130+ else (
1131+ not this .hasImplicitPrecision ( n ) and
1132+ afterdot = 6
1133+ )
11341134 ) and
11351135 len = 1 + 309 + dot + afterdot
11361136 ) and
@@ -1140,12 +1140,12 @@ class FormatLiteral extends Literal {
11401140 exists ( int dot , int afterdot |
11411141 ( if this .getPrecision ( n ) = 0 then dot = 0 else dot = 1 ) and
11421142 (
1143- (
1144- if this .hasExplicitPrecision ( n )
1145- then afterdot = this . getPrecision ( n )
1146- else not this .hasImplicitPrecision ( n )
1147- ) and
1148- afterdot = 6
1143+ if this . hasExplicitPrecision ( n )
1144+ then afterdot = this .getPrecision ( n )
1145+ else (
1146+ not this .hasImplicitPrecision ( n ) and
1147+ afterdot = 6
1148+ )
11491149 ) and
11501150 len = 1 + 1 + dot + afterdot + 1 + 1 + 3
11511151 ) and
@@ -1155,12 +1155,12 @@ class FormatLiteral extends Literal {
11551155 exists ( int dot , int afterdot |
11561156 ( if this .getPrecision ( n ) = 0 then dot = 0 else dot = 1 ) and
11571157 (
1158- (
1159- if this .hasExplicitPrecision ( n )
1160- then afterdot = this . getPrecision ( n )
1161- else not this .hasImplicitPrecision ( n )
1162- ) and
1163- afterdot = 6
1158+ if this . hasExplicitPrecision ( n )
1159+ then afterdot = this .getPrecision ( n )
1160+ else (
1161+ not this .hasImplicitPrecision ( n ) and
1162+ afterdot = 6
1163+ )
11641164 ) and
11651165 // note: this could be displayed in the style %e or %f;
11661166 // however %f is only used when 'P > X >= -4'
0 commit comments