]> git.donarmstrong.com Git - lilypond.git/commitdiff
lilypond-0.0.17
authorfred <fred>
Sat, 14 Dec 1996 13:26:59 +0000 (13:26 +0000)
committerfred <fred>
Sat, 14 Dec 1996 13:26:59 +0000 (13:26 +0000)
src/request.cc

index 6f3778a66d5d0af9730f12f1d0880af70d821d2e..7821ba240c19cb02bc9e1b52ad7b94a27dbaa34b 100644 (file)
@@ -1,4 +1,5 @@
 #include "request.hh"
+#include "misc.hh"
 #include "debug.hh"
 
 #define VIRTUALCONS(T,R) R *T::clone() const { return  new T(*this); } struct T
@@ -69,18 +70,6 @@ Rest_req::print() const
     Rhythmic_req::print();
 }
 
-Real
-wholes(int dur, int dots)
-{
-    Real f = 1.0/Real(dur);
-    Real delta = f;
-
-    while (dots--) {
-       delta /= 2.0;
-       f += delta;
-    }
-    return f;    
-}
 
 Real
 Rhythmic_req::duration() const {