X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=lily%2Fsimple-spacer.cc;h=4376b0133c2d47942884acb8cce9686311ff8db3;hb=54b02666750062788185bd3f99e644d621e348c2;hp=9cdf664797db8c803369129ab7d3530aa75d389e;hpb=a6bd229f7fe1dc4a03478e14ccc0c0c66b225061;p=lilypond.git diff --git a/lily/simple-spacer.cc b/lily/simple-spacer.cc index 9cdf664797..4376b0133c 100644 --- a/lily/simple-spacer.cc +++ b/lily/simple-spacer.cc @@ -1,7 +1,7 @@ /* This file is part of LilyPond, the GNU music typesetter. - Copyright (C) 1999--2010 Han-Wen Nienhuys + Copyright (C) 1999--2011 Han-Wen Nienhuys TODO: - add support for different stretch/shrink constants? @@ -196,7 +196,6 @@ Simple_spacer::expand_line () Real Simple_spacer::compress_line () { - double inv_hooke = 0; double cur_len = configuration_length (force_); double cur_force = force_; bool compressed = false; @@ -213,23 +212,24 @@ Simple_spacer::compress_line () } fits_ = true; - for (vsize i=0; i < springs_.size (); i++) - inv_hooke += compressed - ? springs_[i].inverse_compress_strength () - : springs_[i].inverse_stretch_strength (); assert (line_len_ <= cur_len); vector sorted_springs = springs_; sort (sorted_springs.begin (), sorted_springs.end (), greater ()); - for (vsize i = 0; i < sorted_springs.size (); i++) + /* inv_hooke is the total flexibility of currently-active springs */ + double inv_hooke = 0; + vsize i = sorted_springs.size (); + for ( ; i && sorted_springs[i - 1].blocking_force () < cur_force; i--) + inv_hooke += compressed + ? sorted_springs[i - 1].inverse_compress_strength () + : sorted_springs[i - 1].inverse_stretch_strength (); + /* i now indexes the first active spring, so */ + for ( ; i < sorted_springs.size (); i++) { Spring sp = sorted_springs[i]; - if (sp.blocking_force () > cur_force) - continue; - if (isinf (sp.blocking_force ())) break;