X-Git-Url: https://git.ucc.asn.au/?a=blobdiff_plain;f=src%2Frational.h;h=f9157c766f6b41f0fbdf061f3369183c500f81cc;hb=8b3424a48d2d2e20de1a0e60ff6e1d84b9b5e226;hp=bbd4c30dcb3171882706b785dff43070857d1c8b;hpb=8e0633d24356301c335c20de8ab0865331b91fdb;p=ipdf%2Fcode.git diff --git a/src/rational.h b/src/rational.h index bbd4c30..f9157c7 100644 --- a/src/rational.h +++ b/src/rational.h @@ -10,6 +10,8 @@ #include #include "arbint.h" #include "gmpint.h" +#include +#include namespace IPDF { @@ -75,6 +77,8 @@ struct Rational { Simplify(); } + + Rational(const T & _P, const T & _Q) : P(_P), Q(_Q) { @@ -171,7 +175,13 @@ struct Rational double ToDouble() const { - return (double)P/(double)Q; + T num = P, denom = Q; + while (Tabs(num) > T(1e10)) + { + num /= T(16); + denom /= T(16); + } + return ((double)(num))/((double)(denom)); } bool CheckAccuracy(double d, const char * msg, double threshold = 1e-3) const { @@ -198,8 +208,6 @@ struct Rational - - } #endif //_RATIONAL_H