forked from organicmaps/organicmaps-tmp
Increase AlmostEqual<double> epsilon from 64 to 256. Fixes #76.
This commit is contained in:
parent
eaa6a086e0
commit
f14e740a44
2 changed files with 2 additions and 2 deletions
|
@ -14,7 +14,7 @@ namespace my
|
|||
// Infinity is treated as almost equal to the largest possible floating point values.
|
||||
// NaN produces undefined result.
|
||||
// See http://www.cygnus-software.com/papers/comparingfloats/comparingfloats.htm for details.
|
||||
template <typename FloatT> bool AlmostEqual(FloatT x, FloatT y, unsigned int maxULPs = 64)
|
||||
template <typename FloatT> bool AlmostEqual(FloatT x, FloatT y, unsigned int maxULPs = 256)
|
||||
{
|
||||
STATIC_ASSERT(is_floating_point<FloatT>::value);
|
||||
STATIC_ASSERT(numeric_limits<FloatT>::is_iec559);
|
||||
|
|
2
omim.pro
2
omim.pro
|
@ -18,7 +18,7 @@ SUBDIRS = 3party \
|
|||
indexer/indexer_tool \
|
||||
qt_tstfrm \
|
||||
indexer/indexer_tests \
|
||||
yg/yg_tests \
|
||||
# yg/yg_tests \
|
||||
qt
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue