]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/page-spacing-result.cc
Run `make grand-replace'.
[lilypond.git] / lily / page-spacing-result.cc
index f677476b34a731abfcdddd6e3a09b5b61dd219d1..93c737c83949786f2289904c94cac371138f5c7a 100644 (file)
@@ -3,7 +3,7 @@
   
   source file of the GNU LilyPond music typesetter
   
-  (c) 2007 Han-Wen Nienhuys <hanwen@lilypond.org>
+  (c) 2007--2008 Han-Wen Nienhuys <hanwen@lilypond.org>
   
 */
 
@@ -41,3 +41,12 @@ Page_spacing_result::average_force () const
   average_force /= page_count ();
   return average_force;
 }
+
+void
+Page_spacing_result::print () const
+{
+  printf ("penalty %lf, demerits %lf\n" , penalty_, demerits_);
+  for (vsize i = 0; i < page_count (); i++)
+    printf (" %d:  #sys=%d, force=%lf\n", int (i), int (systems_per_page_[i]),
+           force_[i]);
+}