]> git.donarmstrong.com Git - lilypond.git/commitdiff
(quanting): Increase REGION_SIZE to 4 by default.
authorJan Nieuwenhuizen <janneke@gnu.org>
Fri, 31 May 2002 22:31:32 +0000 (22:31 +0000)
committerJan Nieuwenhuizen <janneke@gnu.org>
Fri, 31 May 2002 22:31:32 +0000 (22:31 +0000)
While we'd rather not want to pay the performance penalty, we
certainly don't want silly bugs.  This should be looked into.

ChangeLog
lily/beam.cc

index 8f67e141639b39b75c0cc11d11e37e0b83a32a07..5b37520de1ca66f806990e1818a7abe75cf4a166 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-06-01  Jan Nieuwenhuizen  <janneke@gnu.org>
+
+       * lily/beam.cc (quanting): Increase REGION_SIZE to 4 by default.
+       While we'd rather not want to pay the performance penalty, we
+       certainly don't want silly bugs.  This should be looked into.
+
 2002-05-31  Jan Nieuwenhuizen  <janneke@gnu.org>
 
        * stepmake/aclocal.m4: Fix for ash as /bin/sh.
index 465dba52541d837b1b196ed69a6c58737062d33e..15df1eaf68f5644e3b7b9ce3a174ac0f423b58ff 100644 (file)
@@ -465,8 +465,18 @@ Beam::quanting (SCM smob)
   Direction rdir = Direction (stem_infos.top ().dir_);
   bool knee_b = dirs_found[LEFT] && dirs_found[RIGHT];
 
-  
-  int REGION_SIZE = 2;
+  /*
+    This
+    
+      \score {
+        \context Staff \notes {
+         \stemDown [e'8 e e']
+       }
+      }
+      
+    breaks with REGION_SIZE < 4
+  */
+  int REGION_SIZE = 4;
 
   /*
     Knees are harder, lets try some more possibilities for knees.