]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix off-by-one error in constrained-breaking.
authorJoe Neeman <joeneeman@gmail.com>
Wed, 24 Jan 2007 06:37:06 +0000 (08:37 +0200)
committerJoe Neeman <joeneeman@gmail.com>
Wed, 24 Jan 2007 06:50:54 +0000 (08:50 +0200)
lily/constrained-breaking.cc
lily/page-breaking.cc

index cbc22cfc05e8e4d49ee795f88ceae68b61c6704d..d01bc2ab2efcc7ddec191b562225664ca208ed85 100644 (file)
@@ -274,7 +274,7 @@ Constrained_breaking::get_min_systems (vsize start, vsize end)
 int
 Constrained_breaking::get_max_systems (vsize start, vsize end)
 {
-  vsize brk = (end >= start_.size ()) ? breaks_.size () - 1 : starting_breakpoints_[end];
+  vsize brk = (end >= start_.size ()) ? breaks_.size () : starting_breakpoints_[end];
   return brk - starting_breakpoints_[start];
 }
 
index b43c302367053bf5418ea7f77db00530f2cf2fcc..5c81dc392caf1a789255ac9f594b45d8bc296bf7 100644 (file)
@@ -75,7 +75,13 @@ void
 Page_breaking::break_into_pieces (vsize start_break, vsize end_break, Line_division const &div)
 {
   vector<Break_position> chunks = chunk_list (start_break, end_break);
-  assert (chunks.size () == div.size () + 1);
+  bool ignore_div = false;
+  if (chunks.size () != div.size () + 1)
+    {
+      programming_error ("did not find a valid page breaking configuration");
+      ignore_div = true;
+      assert (0);
+    }
 
   for (vsize i = 0; i < chunks.size () - 1; i++)
     {
@@ -86,7 +92,9 @@ Page_breaking::break_into_pieces (vsize start_break, vsize end_break, Line_divis
          vsize end;
          line_breaker_args (sys, chunks[i], chunks[i+1], &start, &end);
 
-         vector<Column_x_positions> pos = line_breaking_[sys].get_solution (start, end, div[i]);
+         vector<Column_x_positions> pos = ignore_div
+           ? line_breaking_[sys].get_best_solution (start, end)
+           : line_breaking_[sys].get_solution (start, end, div[i]);
          all_[sys].pscore_->root_system ()->break_into_pieces (pos);
        }
     }