X-Git-Url: https://git.ucc.asn.au/?p=ipdf%2Fcode.git;a=blobdiff_plain;f=src%2Frational.h;h=0fa5d9910f3b7fa8136717bc971c5a7b6f23487a;hp=b01950533ad6810653c724f8924f68d4f982690c;hb=888817a67a9d840be66b52811b01eb77f10ff3e6;hpb=63554274d8ca1b51b47da55c978c3354a91567bc diff --git a/src/rational.h b/src/rational.h index b019505..0fa5d99 100644 --- a/src/rational.h +++ b/src/rational.h @@ -23,6 +23,7 @@ template T Tabs(const T & a) template <> Arbint Tabs(const Arbint & a); template <> Gmpint Tabs(const Gmpint & a); + /* Recursive version of GCD template T gcd(const T & a, const T & b) @@ -77,6 +78,8 @@ struct Rational { Simplify(); } + + Rational(const T & _P, const T & _Q) : P(_P), Q(_Q) { @@ -170,11 +173,20 @@ struct Rational 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 Sqrt() const + { + return Rational(sqrt(ToDouble())); + } + + int64_t ToInt64() const + { + return (int64_t)ToDouble(); + } double ToDouble() const { T num = P, denom = Q; - while (Tabs(num) > T(DBL_MAX)) + while (Tabs(num) > T(1e10)) { num /= T(16); denom /= T(16); @@ -205,8 +217,11 @@ struct Rational }; - - +template +Rational

Abs(const Rational

& a) +{ + return Rational

(Tabs(a.P), a.Q); +} }