X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Frational.h;h=bbd4c30dcb3171882706b785dff43070857d1c8b;hp=6bc5aec2edd6ec7edeffef62e64915c8e38b2306;hb=8e0633d24356301c335c20de8ab0865331b91fdb;hpb=85e08223a33439f9b4911129b48ee45ff65869eb diff --git a/src/rational.h b/src/rational.h index 6bc5aec..bbd4c30 100644 --- a/src/rational.h +++ b/src/rational.h @@ -162,7 +162,7 @@ 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(*this); r.P = -r.P;} + Rational operator-() const {Rational r(*this); r.P = -r.P; return r;} 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;} @@ -196,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); -}