Merge branch 'master' into windows+cc
[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 <stdint.h>
30
31 #include <cmath>
32
33 namespace PBD {
34
35 union Float_t
36 {
37     Float_t (float num = 0.0f) : f(num) {}
38
39     // Portable extraction of components.
40     bool    negative() const { return (i >> 31) != 0; }
41     int32_t raw_mantissa() const { return i & ((1 << 23) - 1); }
42     int32_t raw_exponent() const { return (i >> 23) & 0xFF; }
43  
44     int32_t i;
45     float f;
46 };
47  
48 /* Note: ULPS = Units in the Last Place */
49
50 static inline bool floateq (float a, float b, int max_ulps_diff)
51 {
52     Float_t ua (a);
53     Float_t ub (b);
54  
55     if (a == b) {
56             return true;
57     }
58
59     // Different signs means they do not match.
60     if (ua.negative() != ub.negative()) {
61             return false;
62     }
63
64     // Find the difference in ULPs.
65     int ulps_diff = abs (ua.i - ub.i);
66
67     if (ulps_diff <= max_ulps_diff) {
68         return true;
69     }
70  
71     return false;
72 }
73
74 } /* namespace */
75
76 #endif /* __libpbd__floating_h__ */