Undef SearchPath where needed as it is defined via windows.h
[ardour.git] / libs / pbd / pbd / floating.h
1 /*
2     Copyright (C) 2012 Paul Davis 
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /* Taken from
21  * http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm
22  *
23  * Code assumed to be in the public domain.
24  */
25
26 #ifndef __libpbd__floating_h__
27 #define __libpbd__floating_h__
28
29 #include <cmath>
30
31 namespace PBD {
32
33 union Float_t
34 {
35     Float_t (float num = 0.0f) : f(num) {}
36
37     // Portable extraction of components.
38     bool    negative() const { return (i >> 31) != 0; }
39     int32_t raw_mantissa() const { return i & ((1 << 23) - 1); }
40     int32_t raw_exponent() const { return (i >> 23) & 0xFF; }
41  
42     int32_t i;
43     float f;
44 };
45  
46 /* Note: ULPS = Units in the Last Place */
47
48 static inline bool floateq (float a, float b, int max_ulps_diff)
49 {
50     Float_t ua (a);
51     Float_t ub (b);
52  
53     if (a == b) {
54             return true;
55     }
56
57     // Different signs means they do not match.
58     if (ua.negative() != ub.negative()) {
59             return false;
60     }
61
62     // Find the difference in ULPs.
63     int ulps_diff = abs (ua.i - ub.i);
64
65     if (ulps_diff <= max_ulps_diff) {
66         return true;
67     }
68  
69     return false;
70 }
71
72 } /* namespace */
73
74 #endif /* __libpbd__floating_h__ */