]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/real.hh
Run `make grand-replace'.
[lilypond.git] / flower / include / real.hh
index e395a761d5d4d8d59c2ff95cf5861a10be754a6b..9ab3540ce4412e8fb929dd699baccd613be5bc25 100644 (file)
@@ -3,24 +3,35 @@
 
   source file of the Flower Library
 
-  (c)  1997--2003 Han-Wen Nienhuys <hanwen@cs.uu.nl>
+  (c) 1997--2008 Han-Wen Nienhuys <hanwen@xs4all.nl>
 */
 
-
 #ifndef REAL_HH
 #define REAL_HH
 
-
-#include <limits.h>
+#include <algorithm>
+#include <climits>
+#include <cmath>
+using namespace std;
 
 typedef double Real;
 extern const Real infinity_f;
 
+/* namespace std { */
+  
 template<class T> inline T abs (T x)
 {
   return x > 0 ? x : -x;
 }
 
+/* } namespace std */
+
+inline Real
+distance (Real x, Real y)
+{
+  return abs (x - y);
+}
+
 template<class T> inline int sign (T x)
 {
   if (x)
@@ -28,26 +39,9 @@ template<class T> inline int sign (T x)
   return 0;
 }
 
-template<class T> inline T max (T x, T y)
-{
-  return x >? y;
-}
-
 template<class T> inline T sqr (T x)
 {
-  return x*x;
-}
-
-
-template<class T> inline T min (T x, T y)
-{
-  return x <? y;
-}
-
-inline Real
-distance (Real x,Real y)
-{
-    return abs (x-y);
+  return x * x;
 }
 
 #endif