X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Frational.h;h=595f5f25288c4ac87e9ccbce733a7f248cc2531e;hp=53f7d02fd1caa5c91e727f85b6ba633528d02b60;hb=7a83af96414ff156f56455ff7a5e7af01fc403b5;hpb=ba945308b9273fcd420b3d4f1395b44bd6625929 diff --git a/src/rational.h b/src/rational.h index 53f7d02..595f5f2 100644 --- a/src/rational.h +++ b/src/rational.h @@ -9,16 +9,17 @@ #include #include #include "arbint.h" +#include "gmpint.h" namespace IPDF { template T Tabs(const T & a) { - return llabs(a); + return abs(a); } - - +template <> Arbint Tabs(const Arbint & a); +template <> Gmpint Tabs(const Gmpint & a); /* Recursive version of GCD template @@ -97,6 +98,11 @@ struct Rational Q = T(1); return; } + if (P == Q) + { + P = Q = T(1); + return; + } T g = gcd(Tabs(P), Tabs(Q)); //Debug("Got gcd!"); P /= g; @@ -128,7 +134,7 @@ struct Rational Rational operator-(const Rational & r) const { Rational result = (r.P == T(0)) ? Rational(P,Q) : Rational(P*r.Q - r.P*Q, Q*r.Q); - result.CheckAccuracy(ToDouble() - r.ToDouble(),"-"); + //result.CheckAccuracy(ToDouble() - r.ToDouble(),"-"); return result; } Rational operator*(const Rational & r) const @@ -156,13 +162,17 @@ struct Rational //Rational operator*(const Rational & r) const {return Rational(ToDouble()*r.ToDouble());} //Rational operator/(const Rational & r) const {return Rational(ToDouble()/r.ToDouble());} - Rational & operator=(const Rational & r) {P = r.P; Q = r.Q; return *this;} + Rational operator-() const {Rational r(*this); r.P = -r.P;} + Rational & operator=(const Rational & r) {P = r.P; Q = r.Q; Simplify(); return *this;} Rational & operator+=(const Rational & r) {this->operator=(*this+r); return *this;} Rational & operator-=(const Rational & r) {this->operator=(*this-r); return *this;} Rational & operator*=(const Rational & r) {this->operator=(*this*r); return *this;} Rational & operator/=(const Rational & r) {this->operator=(*this/r); return *this;} - double ToDouble() const {return (double)(P) / (double)(Q);} + double ToDouble() const + { + return (double)P/(double)Q; + } bool CheckAccuracy(double d, const char * msg, double threshold = 1e-3) const { double result = fabs(ToDouble() - d); @@ -186,13 +196,6 @@ struct Rational T Q; }; -inline Rational pow(const Rational & a, const Rational & b) -{ - //TODO:Implement properly - int64_t P = std::pow((double)a.P, b.ToDouble()); - int64_t Q = std::pow((double)a.Q, b.ToDouble()); - return Rational(P, Q); -}