| ... |
... |
@@ -45,15 +45,19 @@
|
| 45 |
45 |
///may offer additional tuning parameters.
|
| 46 |
46 |
///
|
| 47 |
47 |
///\sa Tolerance<float>
|
| 48 |
48 |
///\sa Tolerance<double>
|
| 49 |
49 |
///\sa Tolerance<long double>
|
| 50 |
50 |
///\sa Tolerance<int>
|
|
51 |
#if defined __GNUC__ && !defined __STRICT_ANSI__
|
| 51 |
52 |
///\sa Tolerance<long long int>
|
|
53 |
#endif
|
| 52 |
54 |
///\sa Tolerance<unsigned int>
|
|
55 |
#if defined __GNUC__ && !defined __STRICT_ANSI__
|
| 53 |
56 |
///\sa Tolerance<unsigned long long int>
|
|
57 |
#endif
|
| 54 |
58 |
|
| 55 |
59 |
template<class T>
|
| 56 |
60 |
class Tolerance
|
| 57 |
61 |
{
|
| 58 |
62 |
public:
|
| 59 |
63 |
typedef T Value;
|
| ... |
... |
@@ -127,13 +131,13 @@
|
| 127 |
131 |
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
|
| 128 |
132 |
///Returns \c true if \c a is \e surely positive
|
| 129 |
133 |
bool positive(Value a) const { return _epsilon<a; }
|
| 130 |
134 |
///Returns \c true if \c a is \e surely negative
|
| 131 |
135 |
bool negative(Value a) const { return -_epsilon>a; }
|
| 132 |
136 |
///Returns \c true if \c a is \e surely non-zero
|
| 133 |
|
bool nonZero(Value a) const { return positive(a)||negative(a); };
|
|
137 |
bool nonZero(Value a) const { return positive(a)||negative(a); }
|
| 134 |
138 |
|
| 135 |
139 |
///@}
|
| 136 |
140 |
|
| 137 |
141 |
///Returns zero
|
| 138 |
142 |
static Value zero() {return 0;}
|
| 139 |
143 |
};
|
| ... |
... |
@@ -178,13 +182,13 @@
|
| 178 |
182 |
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
|
| 179 |
183 |
///Returns \c true if \c a is \e surely positive
|
| 180 |
184 |
bool positive(Value a) const { return _epsilon<a; }
|
| 181 |
185 |
///Returns \c true if \c a is \e surely negative
|
| 182 |
186 |
bool negative(Value a) const { return -_epsilon>a; }
|
| 183 |
187 |
///Returns \c true if \c a is \e surely non-zero
|
| 184 |
|
bool nonZero(Value a) const { return positive(a)||negative(a); };
|
|
188 |
bool nonZero(Value a) const { return positive(a)||negative(a); }
|
| 185 |
189 |
|
| 186 |
190 |
///@}
|
| 187 |
191 |
|
| 188 |
192 |
///Returns zero
|
| 189 |
193 |
static Value zero() {return 0;}
|
| 190 |
194 |
};
|
| ... |
... |
@@ -229,13 +233,13 @@
|
| 229 |
233 |
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
|
| 230 |
234 |
///Returns \c true if \c a is \e surely positive
|
| 231 |
235 |
bool positive(Value a) const { return _epsilon<a; }
|
| 232 |
236 |
///Returns \c true if \c a is \e surely negative
|
| 233 |
237 |
bool negative(Value a) const { return -_epsilon>a; }
|
| 234 |
238 |
///Returns \c true if \c a is \e surely non-zero
|
| 235 |
|
bool nonZero(Value a) const { return positive(a)||negative(a); };
|
|
239 |
bool nonZero(Value a) const { return positive(a)||negative(a); }
|
| 236 |
240 |
|
| 237 |
241 |
///@}
|
| 238 |
242 |
|
| 239 |
243 |
///Returns zero
|
| 240 |
244 |
static Value zero() {return 0;}
|
| 241 |
245 |
};
|
| ... |
... |
@@ -262,13 +266,13 @@
|
| 262 |
266 |
static bool different(Value a,Value b) { return a!=b; }
|
| 263 |
267 |
///Returns \c true if \c a is \e surely positive
|
| 264 |
268 |
static bool positive(Value a) { return 0<a; }
|
| 265 |
269 |
///Returns \c true if \c a is \e surely negative
|
| 266 |
270 |
static bool negative(Value a) { return 0>a; }
|
| 267 |
271 |
///Returns \c true if \c a is \e surely non-zero
|
| 268 |
|
static bool nonZero(Value a) { return a!=0; };
|
|
272 |
static bool nonZero(Value a) { return a!=0; }
|
| 269 |
273 |
|
| 270 |
274 |
///@}
|
| 271 |
275 |
|
| 272 |
276 |
///Returns zero
|
| 273 |
277 |
static Value zero() {return 0;}
|
| 274 |
278 |
};
|
| ... |
... |
@@ -295,13 +299,13 @@
|
| 295 |
299 |
static bool different(Value a,Value b) { return a!=b; }
|
| 296 |
300 |
///Returns \c true if \c a is \e surely positive
|
| 297 |
301 |
static bool positive(Value a) { return 0<a; }
|
| 298 |
302 |
///Returns \c true if \c a is \e surely negative
|
| 299 |
303 |
static bool negative(Value) { return false; }
|
| 300 |
304 |
///Returns \c true if \c a is \e surely non-zero
|
| 301 |
|
static bool nonZero(Value a) { return a!=0; };
|
|
305 |
static bool nonZero(Value a) { return a!=0; }
|
| 302 |
306 |
|
| 303 |
307 |
///@}
|
| 304 |
308 |
|
| 305 |
309 |
///Returns zero
|
| 306 |
310 |
static Value zero() {return 0;}
|
| 307 |
311 |
};
|
| ... |
... |
@@ -329,13 +333,13 @@
|
| 329 |
333 |
static bool different(Value a,Value b) { return a!=b; }
|
| 330 |
334 |
///Returns \c true if \c a is \e surely positive
|
| 331 |
335 |
static bool positive(Value a) { return 0<a; }
|
| 332 |
336 |
///Returns \c true if \c a is \e surely negative
|
| 333 |
337 |
static bool negative(Value a) { return 0>a; }
|
| 334 |
338 |
///Returns \c true if \c a is \e surely non-zero
|
| 335 |
|
static bool nonZero(Value a) { return a!=0;};
|
|
339 |
static bool nonZero(Value a) { return a!=0;}
|
| 336 |
340 |
|
| 337 |
341 |
///@}
|
| 338 |
342 |
|
| 339 |
343 |
///Returns zero
|
| 340 |
344 |
static Value zero() {return 0;}
|
| 341 |
345 |
};
|
| ... |
... |
@@ -362,13 +366,13 @@
|
| 362 |
366 |
static bool different(Value a,Value b) { return a!=b; }
|
| 363 |
367 |
///Returns \c true if \c a is \e surely positive
|
| 364 |
368 |
static bool positive(Value a) { return 0<a; }
|
| 365 |
369 |
///Returns \c true if \c a is \e surely negative
|
| 366 |
370 |
static bool negative(Value) { return false; }
|
| 367 |
371 |
///Returns \c true if \c a is \e surely non-zero
|
| 368 |
|
static bool nonZero(Value a) { return a!=0;};
|
|
372 |
static bool nonZero(Value a) { return a!=0;}
|
| 369 |
373 |
|
| 370 |
374 |
///@}
|
| 371 |
375 |
|
| 372 |
376 |
///Returns zero
|
| 373 |
377 |
static Value zero() {return 0;}
|
| 374 |
378 |
};
|
| ... |
... |
@@ -399,13 +403,13 @@
|
| 399 |
403 |
static bool different(Value a,Value b) { return a!=b; }
|
| 400 |
404 |
///Returns \c true if \c a is \e surely positive
|
| 401 |
405 |
static bool positive(Value a) { return 0<a; }
|
| 402 |
406 |
///Returns \c true if \c a is \e surely negative
|
| 403 |
407 |
static bool negative(Value a) { return 0>a; }
|
| 404 |
408 |
///Returns \c true if \c a is \e surely non-zero
|
| 405 |
|
static bool nonZero(Value a) { return a!=0;};
|
|
409 |
static bool nonZero(Value a) { return a!=0;}
|
| 406 |
410 |
|
| 407 |
411 |
///@}
|
| 408 |
412 |
|
| 409 |
413 |
///Returns zero
|
| 410 |
414 |
static Value zero() {return 0;}
|
| 411 |
415 |
};
|
| ... |
... |
@@ -434,13 +438,13 @@
|
| 434 |
438 |
static bool different(Value a,Value b) { return a!=b; }
|
| 435 |
439 |
///Returns \c true if \c a is \e surely positive
|
| 436 |
440 |
static bool positive(Value a) { return 0<a; }
|
| 437 |
441 |
///Returns \c true if \c a is \e surely negative
|
| 438 |
442 |
static bool negative(Value) { return false; }
|
| 439 |
443 |
///Returns \c true if \c a is \e surely non-zero
|
| 440 |
|
static bool nonZero(Value a) { return a!=0;};
|
|
444 |
static bool nonZero(Value a) { return a!=0;}
|
| 441 |
445 |
|
| 442 |
446 |
///@}
|
| 443 |
447 |
|
| 444 |
448 |
///Returns zero
|
| 445 |
449 |
static Value zero() {return 0;}
|
| 446 |
450 |
};
|