]> git.donarmstrong.com Git - lilypond.git/commitdiff
Fix 550.
authorJoe Neeman <joeneeman@gmail.com>
Mon, 25 Feb 2008 19:36:33 +0000 (21:36 +0200)
committerJoe Neeman <joeneeman@gmail.com>
Mon, 25 Feb 2008 19:36:33 +0000 (21:36 +0200)
Update a regression test that was broken by spacing changes.
Fix a corner case that would incorrectly choose a 3-page layout (with
nicer spacing) over a 2-page layout (with no page turns) with the page-turn
breaker and auto-first-page-number = ##t.

input/regression/page-turn-page-breaking-auto-first-page.ly
lily/include/page-turn-page-breaking.hh
lily/page-turn-page-breaking.cc

index 07eb9e497de3d135ba2510593e09e38b4cd0a263..04c849506e8b84c1a38b6891657e47d27b84b5ea 100644 (file)
@@ -17,6 +17,6 @@ number to 2 in order to avoid a bad page turn."
 
 \book {
   \score {
-    {\repeat unfold 30 {a b c d}}
+    {\repeat unfold 40 {a b c d}}
   }
 }
\ No newline at end of file
index bdaec437061618456a3b3fa789e904faa47febc0..b91bdb6bed119c81aa77e6cf41fdd0f33ba95315 100644 (file)
@@ -52,7 +52,7 @@ protected:
 
   vector<Break_node> state_;
 
-  vsize final_page_num (Break_node const &b);
+  vsize total_page_count (Break_node const &b);
   Break_node put_systems_on_pages (vsize start,
                                   vsize end,
                                   vsize configuration,
index b818dc09a1cf85ad5b9f3c8408e7928cb64a700b..75e1a3bbf28204e5d6a52e36fba7a793d27ec020 100644 (file)
@@ -93,13 +93,13 @@ Page_turn_page_breaking::put_systems_on_pages (vsize start,
   return ret;
 }
 
-/* "final page" meaning the number of the final right-hand page,
-   which always has an odd page number */
+/* The number of pages taken up by a Break_node, including
+   the blank page if there is one */
 vsize
-Page_turn_page_breaking::final_page_num (Break_node const &b)
+Page_turn_page_breaking::total_page_count (Break_node const &b)
 {
   vsize end = b.first_page_number_ + b.page_count_;
-  return end - 1 + (end % 2);
+  return end - 1 + (end % 2) - b.first_page_number_;
 }
 
 extern bool debug_page_breaking_scoring;
@@ -160,7 +160,7 @@ Page_turn_page_breaking::calc_subproblem (vsize ending_breakpoint)
               if (isinf (cur.demerits_)
                  || (cur.page_count_  + (p_num % 2) > 2
                      && (!isinf (this_start_best.demerits_))
-                     && final_page_num (cur) > final_page_num (this_start_best)))
+                     && total_page_count (cur) > total_page_count (this_start_best)))
                 {
                   ok_page = false;
                   break;