From: Joe Neeman Date: Thu, 22 Nov 2007 06:39:53 +0000 (+1100) Subject: Decrease the compression penalty. Gets typography-demo back onto 1 page. X-Git-Tag: release/2.11.36-1~65^2~8 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=c409b227db9cd5736f982ae07d3d8b4cf8f75dcb;p=lilypond.git Decrease the compression penalty. Gets typography-demo back onto 1 page. --- diff --git a/lily/simple-spacer.cc b/lily/simple-spacer.cc index fcad2f18c1..f16e607061 100644 --- a/lily/simple-spacer.cc +++ b/lily/simple-spacer.cc @@ -266,7 +266,7 @@ Simple_spacer::force_penalty (bool ragged) const /* Use a convex compression penalty. */ Real f = force_; - return f - (f < 0 ? f*f*f*f*4 : 0); + return f - (f < 0 ? f*f*f*f*2 : 0); } /****************************************************************/