Location: LEMON/LEMON-official/lemon/tolerance.h

Load file history
gravatar
kpeter (Peter Kovacs)
Fix doxygen warnings.
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
/* -*- C++ -*-
*
* This file is a part of LEMON, a generic C++ optimization library
*
* Copyright (C) 2003-2008
* Egervary Jeno Kombinatorikus Optimalizalasi Kutatocsoport
* (Egervary Research Group on Combinatorial Optimization, EGRES).
*
* Permission to use, modify and distribute this software is granted
* provided that this copyright notice appears in all copies. For
* precise terms see the accompanying LICENSE file.
*
* This software is provided "AS IS" with no warranty of any kind,
* express or implied, and with no claim as to its suitability for any
* purpose.
*
*/
#ifndef LEMON_TOLERANCE_H
#define LEMON_TOLERANCE_H
///\ingroup misc
///\file
///\brief A basic tool to handle the anomalies of calculation with
///floating point numbers.
///
///\todo It should be in a module like "Basic tools"
namespace lemon {
/// \addtogroup misc
/// @{
///\brief A class to provide a basic way to
///handle the comparison of numbers that are obtained
///as a result of a probably inexact computation.
///
///\ref Tolerance is a class to provide a basic way to
///handle the comparison of numbers that are obtained
///as a result of a probably inexact computation.
///
///This is an abstract class, it should be specialized for all
///numerical data types. These specialized classes like
///Tolerance<double> may offer additional tuning parameters.
///
///\sa Tolerance<float>
///\sa Tolerance<double>
///\sa Tolerance<long double>
///\sa Tolerance<int>
///\sa Tolerance<long long int>
///\sa Tolerance<unsigned int>
///\sa Tolerance<unsigned long long int>
template<class T>
class Tolerance
{
public:
typedef T Value;
///\name Comparisons
///The concept is that these bool functions return \c true only if
///the related comparisons hold even if some numerical error appeared
///during the computations.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) {return false;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) {return false;}
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) {return false;}
///Returns \c true if \c a is \e surely negative
static bool negative(Value a) {return false;}
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) {return false;}
///@}
///Returns the zero value.
static Value zero() {return T();}
// static bool finite(Value a) {}
// static Value big() {}
// static Value negativeBig() {}
};
///Float specialization of Tolerance.
///Float specialization of Tolerance.
///\sa Tolerance
///\relates Tolerance
template<>
class Tolerance<float>
{
static float def_epsilon;
float _epsilon;
public:
///\e
typedef float Value;
///Constructor setting the epsilon tolerance to the default value.
Tolerance() : _epsilon(def_epsilon) {}
///Constructor setting the epsilon tolerance to the given value.
Tolerance(float e) : _epsilon(e) {}
///Returns the epsilon value.
Value epsilon() const {return _epsilon;}
///Sets the epsilon value.
void epsilon(Value e) {_epsilon=e;}
///Returns the default epsilon value.
static Value defaultEpsilon() {return def_epsilon;}
///Sets the default epsilon value.
static void defaultEpsilon(Value e) {def_epsilon=e;}
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
bool less(Value a,Value b) const {return a+_epsilon<b;}
///Returns \c true if \c a is \e surely different from \c b
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
///Returns \c true if \c a is \e surely positive
bool positive(Value a) const { return _epsilon<a; }
///Returns \c true if \c a is \e surely negative
bool negative(Value a) const { return -_epsilon>a; }
///Returns \c true if \c a is \e surely non-zero
bool nonZero(Value a) const { return positive(a)||negative(a); }
///@}
///Returns zero
static Value zero() {return 0;}
};
///Double specialization of Tolerance.
///Double specialization of Tolerance.
///\sa Tolerance
///\relates Tolerance
template<>
class Tolerance<double>
{
static double def_epsilon;
double _epsilon;
public:
///\e
typedef double Value;
///Constructor setting the epsilon tolerance to the default value.
Tolerance() : _epsilon(def_epsilon) {}
///Constructor setting the epsilon tolerance to the given value.
Tolerance(double e) : _epsilon(e) {}
///Returns the epsilon value.
Value epsilon() const {return _epsilon;}
///Sets the epsilon value.
void epsilon(Value e) {_epsilon=e;}
///Returns the default epsilon value.
static Value defaultEpsilon() {return def_epsilon;}
///Sets the default epsilon value.
static void defaultEpsilon(Value e) {def_epsilon=e;}
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
bool less(Value a,Value b) const {return a+_epsilon<b;}
///Returns \c true if \c a is \e surely different from \c b
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
///Returns \c true if \c a is \e surely positive
bool positive(Value a) const { return _epsilon<a; }
///Returns \c true if \c a is \e surely negative
bool negative(Value a) const { return -_epsilon>a; }
///Returns \c true if \c a is \e surely non-zero
bool nonZero(Value a) const { return positive(a)||negative(a); }
///@}
///Returns zero
static Value zero() {return 0;}
};
///Long double specialization of Tolerance.
///Long double specialization of Tolerance.
///\sa Tolerance
///\relates Tolerance
template<>
class Tolerance<long double>
{
static long double def_epsilon;
long double _epsilon;
public:
///\e
typedef long double Value;
///Constructor setting the epsilon tolerance to the default value.
Tolerance() : _epsilon(def_epsilon) {}
///Constructor setting the epsilon tolerance to the given value.
Tolerance(long double e) : _epsilon(e) {}
///Returns the epsilon value.
Value epsilon() const {return _epsilon;}
///Sets the epsilon value.
void epsilon(Value e) {_epsilon=e;}
///Returns the default epsilon value.
static Value defaultEpsilon() {return def_epsilon;}
///Sets the default epsilon value.
static void defaultEpsilon(Value e) {def_epsilon=e;}
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
bool less(Value a,Value b) const {return a+_epsilon<b;}
///Returns \c true if \c a is \e surely different from \c b
bool different(Value a,Value b) const { return less(a,b)||less(b,a); }
///Returns \c true if \c a is \e surely positive
bool positive(Value a) const { return _epsilon<a; }
///Returns \c true if \c a is \e surely negative
bool negative(Value a) const { return -_epsilon>a; }
///Returns \c true if \c a is \e surely non-zero
bool nonZero(Value a) const { return positive(a)||negative(a); }
///@}
///Returns zero
static Value zero() {return 0;}
};
///Integer specialization of Tolerance.
///Integer specialization of Tolerance.
///\sa Tolerance
template<>
class Tolerance<int>
{
public:
///\e
typedef int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value a) { return 0>a; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0; }
///@}
///Returns zero
static Value zero() {return 0;}
};
///Unsigned integer specialization of Tolerance.
///Unsigned integer specialization of Tolerance.
///\sa Tolerance
template<>
class Tolerance<unsigned int>
{
public:
///\e
typedef unsigned int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value) { return false; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0; }
///@}
///Returns zero
static Value zero() {return 0;}
};
///Long integer specialization of Tolerance.
///Long integer specialization of Tolerance.
///\sa Tolerance
template<>
class Tolerance<long int>
{
public:
///\e
typedef long int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value a) { return 0>a; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0;}
///@}
///Returns zero
static Value zero() {return 0;}
};
///Unsigned long integer specialization of Tolerance.
///Unsigned long integer specialization of Tolerance.
///\sa Tolerance
template<>
class Tolerance<unsigned long int>
{
public:
///\e
typedef unsigned long int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value) { return false; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0;}
///@}
///Returns zero
static Value zero() {return 0;}
};
#if defined __GNUC__ && !defined __STRICT_ANSI__
///Long long integer specialization of Tolerance.
///Long long integer specialization of Tolerance.
///\warning This class (more exactly, type <tt>long long</tt>)
///is not ansi compatible.
///\sa Tolerance
template<>
class Tolerance<long long int>
{
public:
///\e
typedef long long int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value a) { return 0>a; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0;}
///@}
///Returns zero
static Value zero() {return 0;}
};
///Unsigned long long integer specialization of Tolerance.
///Unsigned long long integer specialization of Tolerance.
///\warning This class (more exactly, type <tt>unsigned long long</tt>)
///is not ansi compatible.
///\sa Tolerance
template<>
class Tolerance<unsigned long long int>
{
public:
///\e
typedef unsigned long long int Value;
///\name Comparisons
///See \ref lemon::Tolerance "Tolerance" for more details.
///@{
///Returns \c true if \c a is \e surely strictly less than \c b
static bool less(Value a,Value b) { return a<b;}
///Returns \c true if \c a is \e surely different from \c b
static bool different(Value a,Value b) { return a!=b; }
///Returns \c true if \c a is \e surely positive
static bool positive(Value a) { return 0<a; }
///Returns \c true if \c a is \e surely negative
static bool negative(Value) { return false; }
///Returns \c true if \c a is \e surely non-zero
static bool nonZero(Value a) { return a!=0;}
///@}
///Returns zero
static Value zero() {return 0;}
};
#endif
/// @}
} //namespace lemon
#endif //LEMON_TOLERANCE_H