--paren-vertical-tightness-closing=2
--weld-nested-containers
+==> b1257.in <==
+# S1
+ my $hour_angle
+ = 2 * PI
+ * ( $hour / 12 + $min / ( 12 * 60 ) )
+ - PI
+ / 2;
+
+# S2
+ my $hour_angle
+ = 2 * PI
+ * ( $hour / 12 + $min / ( 12 * 60 ) )
+ - PI / 2;
+
+==> b1257.par <==
+--break-before-all-operators
+--maximum-line-length=50
+
==> b131.in <==
unless
( open( SCORE, "+>>$Score_File" ) )
# strength on both sides of a blank is the same
if ( $type eq 'b' && $last_type ne 'b' ) {
$bond_strength_to_go[$i] = $bond_strength_to_go[ $i - 1 ];
+ $nobreak_to_go[$i] ||= $nobreak_to_go[ $i - 1 ]; # fix for b1257
next;
}
}
# honor no-break's
- next if ( $bs >= NO_BREAK - 1 );
+ ## next if ( $bs >= NO_BREAK - 1 ); # removed for b1257
# remember the pair with the greatest bond strength
if ( !$n_best ) {