]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/optimal-page-breaking.cc
Merge branch 'master' of ssh://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / lily / optimal-page-breaking.cc
index 6e5d20dfd6781e471accb7286133b76827bd58dd..94e22cb5125127751a58f727d81a54d2017b8313 100644 (file)
@@ -1,11 +1,20 @@
 /*
-  optimal-page-breaking.cc -- implement a page-breaker that
-  will break pages in such a way that both horizontal and
-  vertical spacing will be acceptable
+  This file is part of LilyPond, the GNU music typesetter.
 
-  source file of the GNU LilyPond music typesetter
+  Copyright (C) 2006--2009 Joe Neeman <joeneeman@gmail.com>
 
-  (c) 2006--2009 Joe Neeman <joeneeman@gmail.com>
+  LilyPond is free software: you can redistribute it and/or modify
+  it under the terms of the GNU General Public License as published by
+  the Free Software Foundation, either version 3 of the License, or
+  (at your option) any later version.
+
+  LilyPond is distributed in the hope that it will be useful,
+  but WITHOUT ANY WARRANTY; without even the implied warranty of
+  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+  GNU General Public License for more details.
+
+  You should have received a copy of the GNU General Public License
+  along with LilyPond.  If not, see <http://www.gnu.org/licenses/>.
 */
 
 #include "international.hh"
@@ -32,6 +41,8 @@ Optimal_page_breaking::~Optimal_page_breaking ()
 {
 }
 
+extern bool debug_page_breaking_scoring;
+
 // Solves the subproblem betwen the (END-1)th \pageBreak and the
 // ENDth \pageBreak.
 // Returns a vector of systems per page for the pages within this chunk.
@@ -89,6 +100,9 @@ Optimal_page_breaking::solve_chunk (vsize end)
       Page_spacing_result best_for_this_sys_count;
       set_current_breakpoints (end-1, end, sys_count, Line_division (), bound);
 
+      if (debug_page_breaking_scoring)
+       message (_f ("trying %d systems", (int)sys_count));
+
       for (vsize i = 0; i < current_configuration_count (); i++)
        {
          vsize min_p_count = min_page_count (i, first_page_num);
@@ -97,7 +111,7 @@ Optimal_page_breaking::solve_chunk (vsize end)
          if (min_p_count == page_count || scm_is_integer (forced_page_count))
            cur = space_systems_on_n_pages (i, page_count, first_page_num);
          else
-           cur = space_systems_on_n_or_one_more_pages (i, page_count-1, first_page_num);
+           cur = space_systems_on_n_or_one_more_pages (i, page_count-1, first_page_num, 0);
 
          if (cur.demerits_ < best_for_this_sys_count.demerits_)
            {
@@ -106,6 +120,9 @@ Optimal_page_breaking::solve_chunk (vsize end)
            }
        }
 
+      if (debug_page_breaking_scoring)
+       message (_f ("best score for this sys-count: %f", best_for_this_sys_count.demerits_));
+
       if (best_for_this_sys_count.demerits_ < best.demerits_)
        {
          best = best_for_this_sys_count;
@@ -138,6 +155,9 @@ Optimal_page_breaking::solve_chunk (vsize end)
       Real best_demerits_for_this_sys_count = infinity_f;
       set_current_breakpoints (end-1, end, sys_count, bound);
 
+      if (debug_page_breaking_scoring)
+       message (_f ("trying %d systems", (int)sys_count));
+
       for (vsize i = 0; i < current_configuration_count (); i++)
        {
          vsize min_p_count = min_page_count (i, first_page_num);
@@ -160,6 +180,10 @@ Optimal_page_breaking::solve_chunk (vsize end)
              bound = current_configuration (i);
            }
        }
+
+      if (debug_page_breaking_scoring)
+       message (_f ("best score for this sys-count: %f", best_demerits_for_this_sys_count));
+
       if (best_demerits_for_this_sys_count >= BAD_SPACING_PENALTY
        && !(best.system_count_status_ & SYSTEM_COUNT_TOO_FEW))
        break;