]> git.donarmstrong.com Git - lilypond.git/blobdiff - lily/misc.cc
patch::: 1.5.18.moh1: [PATCH] 1.4 Lyric alignment
[lilypond.git] / lily / misc.cc
index 1672a087873112295f45ef44f4d4311a4ab33f2c..45a055f8a6bb4841b2028da33e4309683573dd7f 100644 (file)
@@ -14,7 +14,7 @@
   Return the 2-log, rounded down 
  */
 int
-intlog2(int d)
+intlog2 (int d)
 {
   assert (d);
   int i=0;
@@ -24,12 +24,12 @@ intlog2(int d)
       i++;
     }
   
-  assert (!(d/2));
+  assert (! (d/2));
   return i;
 }
 
 double
-log_2(double x)
+log_2 (double x)
 {
   return log (x)  /log (2.0);
 }
@@ -48,7 +48,7 @@ quantise_iv (Array<Real> positions, Real x)
   Real period = positions.top () - positions[0];
   
   int n =  int ((x - positions[0]) / period);
-  Real frac = (x - positions[0] ) -  n * period;
+  Real frac = (x - positions[0]) -  n * period;
 
   while (frac < 0)
     {
@@ -57,7 +57,7 @@ quantise_iv (Array<Real> positions, Real x)
     }
   
   Real px = frac + positions[0];
-  assert ( positions[0] <= px && px <= positions.top ());
+  assert (positions[0] <= px && px <= positions.top ());
   int i=0;
   for (; i < positions.size () - 1; i++)
     {