]> git.donarmstrong.com Git - lilypond.git/blobdiff - flower/include/interval.hh
*** empty log message ***
[lilypond.git] / flower / include / interval.hh
index 2d7488aeeffa8efcbe71b7fc0a92006888bc8f1f..97f1b1225a598e25d1b3b96750bc099c7b7fd77c 100644 (file)
 /*
   interval.hh -- part of flowerlib
   
-  (c) 1996 Han-Wen Nienhuys
+  (c) 1996--2005 Han-Wen Nienhuys
 */
 
 #ifndef INTERVAL_HH
 #define INTERVAL_HH
 
-#include <assert.h> 
-#include "fproto.hh"
-#include "real.hh"
+#include "flower-proto.hh"
+#include "drul-array.hh"
 
-
-/** a T interval.  this represents the closed interval [left,right].
-  No invariants. T must be a totally ordered ring (with division, anyway ..)
-  At instantiation, the function infinity() has to be defined explicitely.
-  
-  */
+/* A T interval.  This represents the closed interval [left,right].
+   No invariants.  T must be a totally ordered ring (with division, anyway ..)
+   At instantiation, the function infinity () has to be defined explicitely. */
 template<class T>
-struct Interval_t {
-  T left, right;
-
-  /* ************** */
-    
-  static T infinity() ;
-  static String T_to_str (T arg);
-    
-  // ugh, egcs 1.02 ices on this
-//  T center() { return (left + right) / T(2);}
-  // and can't handle this either
-  // anyone want to make a bug report?
-  T center() {
-    T two (2);
-    return (left + right) / two;
-  }
-  void translate (T t) {
-    left += t;
-    right += t;
+struct Interval_t : public Drul_array<T>
+{
+  Drul_array<T>::elem;
+  Drul_array<T>::elem_ref;
+
+  static T infinity ();
+  static String T_to_string (T arg);
+  T center () const;
+  void translate (T t)
+    {
+      elem_ref (LEFT) += t;
+      elem_ref (RIGHT) += t;
+    }
+  void widen (T t)
+  {
+    elem_ref (LEFT) -= t;
+    elem_ref (RIGHT) += t;    
   }
-  T& idx (int j) {
-    if (j==-1)
-      return left;
-    else if (j==1)
-      return right;
+  
+  T distance (T t) const
+  {
+    if (t > elem (RIGHT))
+      return T (t - elem (RIGHT));
+    else if (t < elem (LEFT))
+      return T (elem (LEFT) - t);
     else
-      assert (false);
-    return left;               
-  }
-  T& operator[](int j) {
-    return idx (j);
-  }
-  T operator[](int j) const {
-    return ((Interval_t<T> *)this)->idx (j);
+      return T (0);
   }
-  T &max() { return right;}
-  T max() const { return right;}
-  T min() const{ return left; }
-  T &min(){ return left; }
   /**
     PRE
     *this and h are comparable
     */
   void unite (Interval_t<T> h);
   void intersect (Interval_t<T> h);
-
-  T length() const;
-  void set_empty() ;
-  bool empty_b() const { return left > right; }
-  bool contains_b (Interval_t<T> const&) const;
-  Interval_t() {
-    set_empty();
+  void add_point (T p)
+  {
+    elem_ref(LEFT) = elem (LEFT) <? p;
+    elem_ref(RIGHT) = elem (RIGHT) >? p;
+  }
+  T length () const;
+  T delta () const;
+  void set_empty ();
+  void set_full ();
+
+  /*
+    TODO: strip hungarian suffix.
+   */
+  bool is_empty () const
+  {
+    return elem (LEFT) > elem (RIGHT);
   }
-  Interval_t (T m, T M) {
-    left =m;
-    right = M;
+  bool superset (Interval_t<T> const&) const;
+  Interval_t ()
+  {
+    set_empty ();
   }
+  Interval_t (T m, T M) : Drul_array<T> (m,M)
+    {
+    }
+  Interval_t<T> &operator -= (T r) {
+    *this += -r;
+    return *this;
+  }
+
   Interval_t<T> &operator += (T r) {
-    left += r;
-    right +=r;
+    elem_ref (LEFT) += r;
+    elem_ref (RIGHT) +=r;
     return *this;
   }
-  Interval_t<T> &operator *=(T r) {
-    left *= r;
-    right *= r;
-    if (r < T(0)) {
-      T t = left;
-      left = right;
-      right = t;
-    }
+  Interval_t<T> &operator *= (T r) {
+    if (!is_empty ())
+      {
+       elem_ref (LEFT) *= r;
+       elem_ref (RIGHT) *= r;
+       if (r < T (0))
+         swap();
+
+      }
     return *this;
   }
-  String str() const;    
-  void print () const;
-  bool elt_b (T r);
-  void negate () {
-    T r = -left;
-    T l = -right;
-    left = l;
-    right =r;
+
+  Real linear_combination (Real x) const
+  {
+    Drul_array<Real> da (elem (LEFT), elem (RIGHT));
+    return ::linear_combination (da, x);
+  }
+  String to_string () const;
+
+  bool contains (T r);
+  void negate ()
+  {
+    T r = -elem (LEFT);
+    T l = -elem (RIGHT);
+    elem_ref (LEFT) = l;
+    elem_ref (RIGHT) =r;
+  }
+
+  void swap ()
+  {
+    T t = elem (LEFT);
+    elem_ref (LEFT) = elem (RIGHT);
+    elem_ref (RIGHT) = t;
   }
 };
 
 
 /**
-  inclusion ordering. Crash if not comparable.
+  inclusion ordering. Crash if not  comparable.
   */
 template<class T>
 int Interval__compare (const Interval_t<T>&,Interval_t<T> const&);
 
+/**
+   Inclusion ordering.  return -2 if not comparable
+ */
+template<class T>
+int
+_Interval__compare (const Interval_t<T>&a,Interval_t<T> const&b);
+
+
 /*
   INLINE
  */
 
 #include "compare.hh"
 
-TEMPLATE_INSTANTIATE_COMPARE(Interval_t<T>&, Interval__compare, template<class T>);
+TEMPLATE_INSTANTIATE_COMPARE (Interval_t<T>&, Interval__compare, template<class T>);
 
 
 template<class T>
@@ -128,7 +154,7 @@ intersection (Interval_t<T> a, Interval_t<T> const&b)
 
 template<class T>
 inline
-Interval_t<T> operator +(T a,Interval_t<T> i)
+Interval_t<T> operator + (T a,Interval_t<T> i)
 {
   i += a;
   return i;
@@ -153,13 +179,13 @@ Interval_t<T> operator - (T a,Interval_t<T> i)
 
 template<class T>
 inline
-Interval_t<T> operator +(Interval_t<T> i,T a){
+Interval_t<T> operator + (Interval_t<T> i,T a){
   return a+i;
 }
 
 template<class T>
 inline
-Interval_t<T> operator *(T a,Interval_t<T> i)
+Interval_t<T> operator * (T a,Interval_t<T> i)
 {
   i *= a;
   return i;
@@ -167,16 +193,23 @@ Interval_t<T> operator *(T a,Interval_t<T> i)
 
 template<class T>
 inline
-Interval_t<T> operator *(Interval_t<T> i,T a){
+Interval_t<T> operator * (Interval_t<T> i,T a){
   return a*i;
 }
 
-typedef Interval_t<Real> Interval;
 
+template<class T>
+inline T
+Interval_t<T>::center () const
+{
+  assert (!is_empty ());
+  return (elem (LEFT) + elem (RIGHT)) / T (2);
+}
 
+// again? see flower-proto.hh
+typedef Interval_t<Real> Interval;
+typedef Interval_t<int> Slice; // weird name
 
 
 #endif // INTERVAL_HH
 
-
-