X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=flower%2Frational.cc;h=7fe157c5429cf28b61799688cee71977d82e0197;hb=ac3dd3ad38528113d97f6a8a7b81751c328f1c36;hp=724f0d99ca5b526dfc5f067decfbaf2066f7796c;hpb=a276a19dc6bd57832db3107f2f2cbb04cb4677b6;p=lilypond.git diff --git a/flower/rational.cc b/flower/rational.cc index 724f0d99ca..7fe157c542 100644 --- a/flower/rational.cc +++ b/flower/rational.cc @@ -1,9 +1,20 @@ /* - rational.cc -- implement Rational + This file is part of LilyPond, the GNU music typesetter. - source file of the Flower Library + Copyright (C) 1997--2011 Han-Wen Nienhuys - (c) 1997--2007 Han-Wen Nienhuys + LilyPond is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + LilyPond is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with LilyPond. If not, see . */ #include "rational.hh" @@ -20,7 +31,7 @@ double Rational::to_double () const { if (sign_ == -1 || sign_ == 1 || sign_ == 0) - return ((double)sign_) * num_ / den_; + return (double)sign_ * (double)num_ / (double)den_; if (sign_ == -2) return -HUGE_VAL; else if (sign_ == 2) @@ -50,7 +61,9 @@ Rational::abs () const Rational Rational::trunc_rat () const { - return Rational (num_ - (num_ % den_), den_); + if (is_infinity()) + return *this; + return Rational ((num_ - (num_ % den_)) * sign_, den_); } Rational::Rational () @@ -59,7 +72,7 @@ Rational::Rational () num_ = den_ = 1; } -Rational::Rational (int n, int d) +Rational::Rational (I64 n, I64 d) { sign_ = ::sign (n) * ::sign (d); num_ = ::abs (n); @@ -67,6 +80,20 @@ Rational::Rational (int n, int d) normalize (); } +Rational::Rational (I64 n) +{ + sign_ = ::sign (n); + num_ = ::abs (n); + den_ = 1; +} + +Rational::Rational (U64 n) +{ + sign_ = 1; + num_ = n; + den_ = 1; +} + Rational::Rational (int n) { sign_ = ::sign (n); @@ -79,6 +106,7 @@ void Rational::set_infinite (int s) { sign_ = ::sign (s) * 2; + num_ = 1; } Rational @@ -109,18 +137,18 @@ Rational::mod_rat (Rational div) const /* copy & paste from scm_gcd (GUILE). */ -static int -gcd (long u, long v) +static I64 +gcd (I64 u, I64 v) { - long result = 0; + I64 result = 0; if (u == 0) result = v; else if (v == 0) result = u; else { - long k = 1; - long t; + I64 k = 1; + I64 t; /* Determine a common factor 2^k */ while (!(1 & (u | v))) { @@ -173,7 +201,7 @@ Rational::normalize () } else { - int g = gcd (num_, den_); + I64 g = gcd (num_, den_); num_ /= g; den_ /= g; @@ -196,7 +224,7 @@ Rational::compare (Rational const &r, Rational const &s) return 0; else if (r.sign_ == 0) return 0; - return r.sign_ * ::sign (int (r.num_ * s.den_) - int (s.num_ * r.den_)); + return r.sign_ * ::sign ((I64) (r.num_ * s.den_) - (I64) (s.num_ * r.den_)); } int @@ -221,9 +249,9 @@ Rational::operator += (Rational r) *this = r; else { - int lcm = (den_ / gcd (r.den_, den_)) * r.den_; - int n = sign_ * num_ * (lcm / den_) + r.sign_ * r.num_ * (lcm / r.den_); - int d = lcm; + I64 lcm = (den_ / gcd (r.den_, den_)) * r.den_; + I64 n = sign_ * num_ * (lcm / den_) + r.sign_ * r.num_ * (lcm / r.den_); + I64 d = lcm; sign_ = ::sign (n) * ::sign (d); num_ = ::abs (n); den_ = ::abs (d); @@ -255,8 +283,8 @@ Rational::Rational (double x) easily. */ - num_ = (unsigned int) (mantissa * FACT); - den_ = (unsigned int) FACT; + num_ = (U64) (mantissa * FACT); + den_ = (U64) FACT; normalize (); if (expt < 0) den_ <<= -expt; @@ -276,7 +304,7 @@ Rational::Rational (double x) void Rational::invert () { - int r (num_); + I64 r (num_); num_ = den_; den_ = r; } @@ -337,7 +365,7 @@ Rational::to_string () const int Rational::to_int () const { - return (int) num () / den (); + return (int)(num () / den ()); } int