Increase AlmostEqual<double> epsilon from 64 to 256. Fixes #76.

This commit is contained in:
Yury Melnichek 2010-12-19 12:41:14 +01:00 committed by Alex Zolotarev
parent eaa6a086e0
commit f14e740a44
2 changed files with 2 additions and 2 deletions

View file

@ -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);

View file

@ -18,7 +18,7 @@ SUBDIRS = 3party \
indexer/indexer_tool \
qt_tstfrm \
indexer/indexer_tests \
yg/yg_tests \
# yg/yg_tests \
qt
}