Qualia  0.2
FPCompare.h
Go to the documentation of this file.
1 #ifndef FP_COMPARE_H_
2 #define FP_COMPARE_H_
3 
4 #include <qualia/core/common.h>
5 
6 bool AlmostEqualUlps(float A, float B, int maxUlps);
7 bool AlmostEqual2sComplement(float A, float B, int maxUlps);
8 bool AlmostEqualUlpsFinal(float A, float B, int maxUlps);
9 
10 #endif