110 static constexpr double SPLIT = 134217729.0;
120 DD(
double p_hi,
double p_lo) : hi(p_hi), lo(p_lo) {};
121 DD(
double x) : hi(x), lo(0.0) {};
122 DD() : hi(0.0), lo(0.0) {};
124 bool operator==(
const DD &rhs)
const
126 return hi == rhs.hi && lo == rhs.lo;
129 bool operator!=(
const DD &rhs)
const
131 return hi != rhs.hi || lo != rhs.lo;
134 bool operator<(
const DD &rhs)
const
136 return (hi < rhs.hi) || (hi == rhs.hi && lo < rhs.lo);
139 bool operator<=(
const DD &rhs)
const
141 return (hi < rhs.hi) || (hi == rhs.hi && lo <= rhs.lo);
144 bool operator>(
const DD &rhs)
const
146 return (hi > rhs.hi) || (hi == rhs.hi && lo > rhs.lo);
149 bool operator>=(
const DD &rhs)
const
151 return (hi > rhs.hi) || (hi == rhs.hi && lo >= rhs.lo);
154 friend GEOS_DLL
DD operator+ (
const DD &lhs,
const DD &rhs);
155 friend GEOS_DLL
DD operator+ (
const DD &lhs,
double rhs);
156 friend GEOS_DLL
DD operator- (
const DD &lhs,
const DD &rhs);
157 friend GEOS_DLL
DD operator- (
const DD &lhs,
double rhs);
158 friend GEOS_DLL
DD operator* (
const DD &lhs,
const DD &rhs);
159 friend GEOS_DLL
DD operator* (
const DD &lhs,
double rhs);
160 friend GEOS_DLL
DD operator/ (
const DD &lhs,
const DD &rhs);
161 friend GEOS_DLL
DD operator/ (
const DD &lhs,
double rhs);
162 friend GEOS_DLL
DD operator- (
const DD& x);
164 static DD determinant(
const DD &x1,
const DD &y1,
const DD &x2,
const DD &y2);
165 static DD determinant(
double x1,
double y1,
double x2,
double y2);
166 static DD abs(
const DD &d);
167 static DD pow(
const DD &d,
int exp);
168 static DD trunc(
const DD &d);
172 bool isNegative()
const;
173 bool isPositive()
const;
175 double doubleValue()
const;
176 double ToDouble()
const {
return doubleValue(); }
177 int intValue()
const;
179 DD reciprocal()
const;
183 void selfAdd(
const DD &d);
184 void selfAdd(
double p_hi,
double p_lo);
185 void selfAdd(
double y);
187 void selfSubtract(
const DD &d);
188 void selfSubtract(
double p_hi,
double p_lo);
189 void selfSubtract(
double y);
191 void selfMultiply(
double p_hi,
double p_lo);
192 void selfMultiply(
const DD &d);
193 void selfMultiply(
double y);
195 void selfDivide(
double p_hi,
double p_lo);
196 void selfDivide(
const DD &d);
197 void selfDivide(
double y);