]> git.donarmstrong.com Git - lilypond.git/blob - flower/include/rational.hh
ab4a3d41cfb862b8e83ba8942b1a3ae59e9a4024
[lilypond.git] / flower / include / rational.hh
1 /*
2   rational.hh -- declare rational helpers
3
4   source file of the Flower Library
5
6   (c)  1997--2000 Han-Wen Nienhuys <hanwen@cs.uu.nl>
7 */
8
9
10 #ifndef RATIONAL_HH
11 #define RATIONAL_HH
12
13 #include "compare.hh"
14 #include "arithmetic-operator.hh"
15 #include "flower-proto.hh"
16 #include "string.hh"
17
18
19 /**
20    Rational numbers.  Included is support for + and - infinity.
21  */
22 class Rational {
23   /**
24      Sign of rational.
25      -2, .. 2
26
27      -2,2 is - and + infinity.
28      -1,1 is negative and positive.
29      0 if *this is zero.
30    */
31   int sign_;
32   unsigned int num_, den_;
33   void normalise ();
34   void copy (Rational const &);
35
36 public:
37   void set_infinite (int sign);
38   bool infty_b () const;
39   void invert ();
40   int num () const { return sign_ * num_; }
41   int den () const { return den_; }
42
43   Rational trunc_rat () const;
44   Rational div_rat (Rational) const;
45   Rational mod_rat (Rational) const;
46   void negate ();
47   //   operator bool () const;
48   int to_int () const;
49   operator double () const;
50   Rational operator - () const;
51   /**
52      Initialize to 0. 
53    */
54   Rational ();
55   Rational (int, int =1);
56   Rational (double);
57   Rational (Rational const&r) {   copy (r);}
58
59   Rational &operator = (Rational const &);
60   Rational &operator *= (Rational);
61   Rational &operator /= (Rational);  
62   Rational &operator += (Rational);
63   Rational &operator -= (Rational);
64   Rational &operator %= (Rational);
65   static int compare (Rational const&, Rational const&);
66   int sign () const;
67   String str () const;
68 };
69
70 IMPLEMENT_ARITHMETIC_OPERATOR (Rational, / );
71 IMPLEMENT_ARITHMETIC_OPERATOR (Rational, + );
72 IMPLEMENT_ARITHMETIC_OPERATOR (Rational, * );
73 IMPLEMENT_ARITHMETIC_OPERATOR (Rational, - );
74 IMPLEMENT_ARITHMETIC_OPERATOR (Rational, % );
75
76 INSTANTIATE_COMPARE (Rational const&, Rational::compare);
77
78 int compare (Rational const&,Rational const&);
79 int sign (Rational r);
80
81 inline void
82 Rational::copy (Rational const&r)
83 {
84   sign_ = r.sign_;
85   num_ = r.num_;
86   den_ = r.den_;
87 }
88
89 ostream &
90 operator << (ostream &,  Rational);
91
92 const Rational infinity_rat = INT_MAX;
93
94 #endif // RATIONAL_HH