From c93ecfd1b1e4e2c62d6f6148b4854081a06b98e5 Mon Sep 17 00:00:00 2001 From: Maxim Pimenov Date: Fri, 22 May 2015 15:28:20 +0300 Subject: [PATCH] Rename AlmostEqual into AlmostEqualULPs. --- base/base_tests/math_test.cpp | 45 +++++++-------- base/base_tests/string_utils_test.cpp | 10 ++-- base/math.hpp | 2 +- coding/coding_tests/reader_test.cpp | 2 +- drape/drape_tests/stipple_pen_tests.cpp | 8 +-- drape/drape_tests/texture_of_colors_tests.cpp | 8 +-- drape_frontend/visual_params.cpp | 2 +- generator/feature_builder.cpp | 2 +- generator/feature_sorter.hpp | 2 +- generator/generator_tests/coasts_test.cpp | 24 ++++---- geometry/angles.cpp | 2 +- geometry/distance.hpp | 2 +- geometry/geometry_tests/angle_test.cpp | 22 ++++---- geometry/geometry_tests/distance_test.cpp | 34 +++++------ geometry/geometry_tests/point_test.cpp | 22 ++++---- geometry/geometry_tests/spline_test.cpp | 6 +- geometry/geometry_tests/vector_test.cpp | 2 +- geometry/point2d.hpp | 14 ++--- geometry/polygon.hpp | 2 +- geometry/region2d.hpp | 4 +- indexer/indexer_tests/cell_id_test.cpp | 2 +- .../geometry_serialization_test.cpp | 2 +- indexer/indexer_tests/mercator_test.cpp | 6 +- map/map_tests/bookmarks_test.cpp | 18 +++--- map/map_tests/ge0_parser_tests.cpp | 2 +- map/map_tests/geourl_test.cpp | 32 +++++------ map/map_tests/kmz_unarchive_test.cpp | 8 +-- map/map_tests/mwm_url_tests.cpp | 2 +- map/map_tests/navigator_test.cpp | 2 +- map/map_tests/tracks_tests.cpp | 50 ++++++++--------- map/navigator.cpp | 4 +- map/route_track.cpp | 16 +++--- map/routing_session.cpp | 2 +- map/user_mark_dl_cache.hpp | 2 +- platform/measurement_utils.cpp | 2 +- platform/platform_tests/jansson_test.cpp | 6 +- platform/platform_tests/location_test.cpp | 20 +++---- render/cpu_drawer.cpp | 2 +- render/geometry_processors.cpp | 2 +- routing/road_graph.cpp | 4 +- routing/route.cpp | 4 +- search/search_query.cpp | 2 +- search/search_tests/house_detector_tests.cpp | 6 +- search/search_tests/latlon_match_test.cpp | 56 +++++++++---------- testing/testing.hpp | 8 +-- 45 files changed, 238 insertions(+), 237 deletions(-) diff --git a/base/base_tests/math_test.cpp b/base/base_tests/math_test.cpp index 342621f4e9..12f22b96ea 100644 --- a/base/base_tests/math_test.cpp +++ b/base/base_tests/math_test.cpp @@ -40,27 +40,28 @@ UNIT_TEST(PowUInt) TEST_EQUAL(my::PowUint(3, 10), 59049, ()); } -UNIT_TEST(AlmostEqual_Smoke) +UNIT_TEST(AlmostEqualULPs_Smoke) { - TEST_ALMOST_EQUAL(3.0, 3.0, ()); - TEST_ALMOST_EQUAL(+0.0, -0.0, ()); + TEST_ALMOST_EQUAL_ULPS(3.0, 3.0, ()); + TEST_ALMOST_EQUAL_ULPS(+0.0, -0.0, ()); double const eps = numeric_limits::epsilon(); double const dmax = numeric_limits::max(); - TEST_ALMOST_EQUAL(1.0 + eps, 1.0, ()); - TEST_ALMOST_EQUAL(1.0 - eps, 1.0, ()); - TEST_ALMOST_EQUAL(1.0 - eps, 1.0 + eps, ()); + TEST_ALMOST_EQUAL_ULPS(1.0 + eps, 1.0, ()); + TEST_ALMOST_EQUAL_ULPS(1.0 - eps, 1.0, ()); + TEST_ALMOST_EQUAL_ULPS(1.0 - eps, 1.0 + eps, ()); - TEST_ALMOST_EQUAL(dmax, dmax, ()); - TEST_ALMOST_EQUAL(-dmax, -dmax, ()); - TEST_ALMOST_EQUAL(dmax/2.0, dmax/2.0, ()); - TEST_ALMOST_EQUAL(1.0/dmax, 1.0/dmax, ()); - TEST_ALMOST_EQUAL(-1.0/dmax, -1.0/dmax, ()); + TEST_ALMOST_EQUAL_ULPS(dmax, dmax, ()); + TEST_ALMOST_EQUAL_ULPS(-dmax, -dmax, ()); + TEST_ALMOST_EQUAL_ULPS(dmax/2.0, dmax/2.0, ()); + TEST_ALMOST_EQUAL_ULPS(1.0/dmax, 1.0/dmax, ()); + TEST_ALMOST_EQUAL_ULPS(-1.0/dmax, -1.0/dmax, ()); - TEST(!my::AlmostEqual(1.0, -1.0), ()); - TEST(!my::AlmostEqual(2.0, -2.0), ()); - TEST(!my::AlmostEqual(dmax, -dmax), ()); + TEST(!my::AlmostEqualULPs(1.0, -1.0), ()); + TEST(!my::AlmostEqualULPs(2.0, -2.0), ()); + TEST(!my::AlmostEqualULPs(dmax, -dmax), ()); + TEST(!my::AlmostEqualULPs(0.0, eps), ()); } namespace @@ -85,12 +86,12 @@ template void TestMaxULPs() FloatT y = x; for (unsigned int i = 0; i <= maxULPs; ++i) { - TEST(my::AlmostEqual(x, y, maxULPs), (x, y, maxULPs, x - y, dir)); + TEST(my::AlmostEqualULPs(x, y, maxULPs), (x, y, maxULPs, x - y, dir)); FloatT const nextY = NextFloat(y, dir); TEST_NOT_EQUAL(y, nextY, (i, base, dir)); y = nextY; } - TEST(!my::AlmostEqual(x, y, maxULPs), (x, y, maxULPs, x - y)); + TEST(!my::AlmostEqualULPs(x, y, maxULPs), (x, y, maxULPs, x - y)); } } } @@ -98,12 +99,12 @@ template void TestMaxULPs() } -UNIT_TEST(AlmostEqual_MaxULPs_double) +UNIT_TEST(AlmostEqualULPs_MaxULPs_double) { TestMaxULPs(); } -UNIT_TEST(AlmostEqual_MaxULPs_float) +UNIT_TEST(AlmostEqualULPs_MaxULPs_float) { TestMaxULPs(); } @@ -112,13 +113,13 @@ UNIT_TEST(TEST_FLOAT_DOUBLE_EQUAL_macros) { float const fx = 3; float const fy = NextFloat(NextFloat(NextFloat(fx))); - TEST_ALMOST_EQUAL(fx, fy, ()); - TEST_NOT_ALMOST_EQUAL(fx, 2.0f, ()); + TEST_ALMOST_EQUAL_ULPS(fx, fy, ()); + TEST_NOT_ALMOST_EQUAL_ULPS(fx, 2.0f, ()); double const dx = 3; double const dy = NextFloat(NextFloat(NextFloat(dx))); - TEST_ALMOST_EQUAL(dx, dy, ()); - TEST_NOT_ALMOST_EQUAL(dx, 2.0, ()); + TEST_ALMOST_EQUAL_ULPS(dx, dy, ()); + TEST_NOT_ALMOST_EQUAL_ULPS(dx, 2.0, ()); } UNIT_TEST(IsIntersect_Intervals) diff --git a/base/base_tests/string_utils_test.cpp b/base/base_tests/string_utils_test.cpp index 56603829ab..82c39df4d4 100644 --- a/base/base_tests/string_utils_test.cpp +++ b/base/base_tests/string_utils_test.cpp @@ -139,23 +139,23 @@ UNIT_TEST(to_double) s = "0.123"; TEST(strings::to_double(s, d), ()); - TEST_ALMOST_EQUAL(0.123, d, ()); + TEST_ALMOST_EQUAL_ULPS(0.123, d, ()); s = "1."; TEST(strings::to_double(s, d), ()); - TEST_ALMOST_EQUAL(1.0, d, ()); + TEST_ALMOST_EQUAL_ULPS(1.0, d, ()); s = "0"; TEST(strings::to_double(s, d), ()); - TEST_ALMOST_EQUAL(0., d, ()); + TEST_ALMOST_EQUAL_ULPS(0., d, ()); s = "5.6843418860808e-14"; TEST(strings::to_double(s, d), ()); - TEST_ALMOST_EQUAL(5.6843418860808e-14, d, ()); + TEST_ALMOST_EQUAL_ULPS(5.6843418860808e-14, d, ()); s = "-2"; TEST(strings::to_double(s, d), ()); - TEST_ALMOST_EQUAL(-2.0, d, ()); + TEST_ALMOST_EQUAL_ULPS(-2.0, d, ()); s = "labuda"; TEST(!strings::to_double(s, d), ()); diff --git a/base/math.hpp b/base/math.hpp index ba9df9cba9..b5cec68fd8 100644 --- a/base/math.hpp +++ b/base/math.hpp @@ -22,7 +22,7 @@ template inline T Abs(T x) // 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 bool AlmostEqual(FloatT x, FloatT y, unsigned int maxULPs = 256) +template bool AlmostEqualULPs(FloatT x, FloatT y, unsigned int maxULPs = 256) { STATIC_ASSERT(is_floating_point::value); STATIC_ASSERT(numeric_limits::is_iec559); diff --git a/coding/coding_tests/reader_test.cpp b/coding/coding_tests/reader_test.cpp index e61999187a..94dba654d9 100644 --- a/coding/coding_tests/reader_test.cpp +++ b/coding/coding_tests/reader_test.cpp @@ -125,7 +125,7 @@ UNIT_TEST(ReaderStreamBuf) TEST_EQUAL(str, "hey!", ()); TEST_EQUAL(i, 1, ()); - TEST_ALMOST_EQUAL(d, 3.14, ()); + TEST_ALMOST_EQUAL_ULPS(d, 3.14, ()); TEST_EQUAL(ull, 0x0102030405060708ull, ()); } diff --git a/drape/drape_tests/stipple_pen_tests.cpp b/drape/drape_tests/stipple_pen_tests.cpp index a336c587dc..ac8b2d4d55 100644 --- a/drape/drape_tests/stipple_pen_tests.cpp +++ b/drape/drape_tests/stipple_pen_tests.cpp @@ -30,10 +30,10 @@ namespace bool IsRectsEqual(m2::RectF const & r1, m2::RectF const & r2) { - return my::AlmostEqual(r1.minX(), r2.minX()) && - my::AlmostEqual(r1.minY(), r2.minY()) && - my::AlmostEqual(r1.maxX(), r2.maxX()) && - my::AlmostEqual(r1.maxY(), r2.maxY()); + return my::AlmostEqualULPs(r1.minX(), r2.minX()) && + my::AlmostEqualULPs(r1.minY(), r2.minY()) && + my::AlmostEqualULPs(r1.maxX(), r2.maxX()) && + my::AlmostEqualULPs(r1.maxY(), r2.maxY()); } } diff --git a/drape/drape_tests/texture_of_colors_tests.cpp b/drape/drape_tests/texture_of_colors_tests.cpp index 7be8585a07..e784378f02 100644 --- a/drape/drape_tests/texture_of_colors_tests.cpp +++ b/drape/drape_tests/texture_of_colors_tests.cpp @@ -24,10 +24,10 @@ namespace void TestRects(m2::RectF const & a, m2::RectF const & b) { - TEST_ALMOST_EQUAL(a.minX(), b.minX(), ()); - TEST_ALMOST_EQUAL(a.maxX(), b.maxX(), ()); - TEST_ALMOST_EQUAL(a.minY(), b.minY(), ()); - TEST_ALMOST_EQUAL(a.maxY(), b.maxY(), ()); + TEST_ALMOST_EQUAL_ULPS(a.minX(), b.minX(), ()); + TEST_ALMOST_EQUAL_ULPS(a.maxX(), b.maxX(), ()); + TEST_ALMOST_EQUAL_ULPS(a.minY(), b.minY(), ()); + TEST_ALMOST_EQUAL_ULPS(a.maxY(), b.maxY(), ()); } void InitOpenGLTextures(int const w, int const h) diff --git a/drape_frontend/visual_params.cpp b/drape_frontend/visual_params.cpp index 85e747833f..9e4b19cb1d 100644 --- a/drape_frontend/visual_params.cpp +++ b/drape_frontend/visual_params.cpp @@ -30,7 +30,7 @@ struct VisualScaleFinder bool operator()(visual_scale_t const & node) { - return my::AlmostEqual(node.second, m_vs); + return my::AlmostEqualULPs(node.second, m_vs); } double m_vs; diff --git a/generator/feature_builder.cpp b/generator/feature_builder.cpp index 6d9317e76d..81447dbc6e 100644 --- a/generator/feature_builder.cpp +++ b/generator/feature_builder.cpp @@ -161,7 +161,7 @@ namespace { bool is_equal(double d1, double d2) { - //return my::AlmostEqual(d1, d2, 100000000); + //return my::AlmostEqualULPs(d1, d2, 100000000); return (fabs(d1 - d2) < MercatorBounds::GetCellID2PointAbsEpsilon()); } diff --git a/generator/feature_sorter.hpp b/generator/feature_sorter.hpp index 980a94acd6..310be20847 100644 --- a/generator/feature_sorter.hpp +++ b/generator/feature_sorter.hpp @@ -25,7 +25,7 @@ namespace feature template <> inline bool are_points_equal(m2::PointD const & p1, m2::PointD const & p2) { - return AlmostEqual(p1, p2); + return AlmostEqualULPs(p1, p2); } class BoundsDistance : public m2::DistanceToLineSquare diff --git a/generator/generator_tests/coasts_test.cpp b/generator/generator_tests/coasts_test.cpp index 532af6f892..bcf3e2a586 100644 --- a/generator/generator_tests/coasts_test.cpp +++ b/generator/generator_tests/coasts_test.cpp @@ -45,9 +45,9 @@ UNIT_TEST(CellID_CheckRectPoints) TId neibour = TId::FromXY(xy.first - r, xy.second, level); TConverter::GetCellBounds(neibour, minX_, minY_, maxX_, maxY_); - TEST_ALMOST_EQUAL(minX, maxX_, ()); - TEST_ALMOST_EQUAL(minY, minY_, ()); - TEST_ALMOST_EQUAL(maxY, maxY_, ()); + TEST_ALMOST_EQUAL_ULPS(minX, maxX_, ()); + TEST_ALMOST_EQUAL_ULPS(minY, minY_, ()); + TEST_ALMOST_EQUAL_ULPS(maxY, maxY_, ()); TEST_EQUAL(D2I(minX, minY), D2I(maxX_, minY_), ()); TEST_EQUAL(D2I(minX, maxY), D2I(maxX_, maxY_), ()); @@ -58,9 +58,9 @@ UNIT_TEST(CellID_CheckRectPoints) TId neibour = TId::FromXY(xy.first + r, xy.second, level); TConverter::GetCellBounds(neibour, minX_, minY_, maxX_, maxY_); - TEST_ALMOST_EQUAL(maxX, minX_, ()); - TEST_ALMOST_EQUAL(minY, minY_, ()); - TEST_ALMOST_EQUAL(maxY, maxY_, ()); + TEST_ALMOST_EQUAL_ULPS(maxX, minX_, ()); + TEST_ALMOST_EQUAL_ULPS(minY, minY_, ()); + TEST_ALMOST_EQUAL_ULPS(maxY, maxY_, ()); TEST_EQUAL(D2I(maxX, minY), D2I(minX_, minY_), ()); TEST_EQUAL(D2I(maxX, maxY), D2I(minX_, maxY_), ()); @@ -71,9 +71,9 @@ UNIT_TEST(CellID_CheckRectPoints) TId neibour = TId::FromXY(xy.first, xy.second - r, level); TConverter::GetCellBounds(neibour, minX_, minY_, maxX_, maxY_); - TEST_ALMOST_EQUAL(minY, maxY_, ()); - TEST_ALMOST_EQUAL(minX, minX_, ()); - TEST_ALMOST_EQUAL(maxX, maxX_, ()); + TEST_ALMOST_EQUAL_ULPS(minY, maxY_, ()); + TEST_ALMOST_EQUAL_ULPS(minX, minX_, ()); + TEST_ALMOST_EQUAL_ULPS(maxX, maxX_, ()); TEST_EQUAL(D2I(minX, minY), D2I(minX_, maxY_), ()); TEST_EQUAL(D2I(maxX, minY), D2I(maxX_, maxY_), ()); @@ -84,9 +84,9 @@ UNIT_TEST(CellID_CheckRectPoints) TId neibour = TId::FromXY(xy.first, xy.second + r, level); TConverter::GetCellBounds(neibour, minX_, minY_, maxX_, maxY_); - TEST_ALMOST_EQUAL(maxY, minY_, ()); - TEST_ALMOST_EQUAL(minX, minX_, ()); - TEST_ALMOST_EQUAL(maxX, maxX_, ()); + TEST_ALMOST_EQUAL_ULPS(maxY, minY_, ()); + TEST_ALMOST_EQUAL_ULPS(minX, minX_, ()); + TEST_ALMOST_EQUAL_ULPS(maxX, maxX_, ()); TEST_EQUAL(D2I(minX, maxY), D2I(minX_, minY_), ()); TEST_EQUAL(D2I(maxX, maxY), D2I(maxX_, minY_), ()); diff --git a/geometry/angles.cpp b/geometry/angles.cpp index b1a34ae508..7abf02c77a 100644 --- a/geometry/angles.cpp +++ b/geometry/angles.cpp @@ -11,7 +11,7 @@ double AngleIn2PI(double ang) if (ang < 0.0) ang += period; - if (my::AlmostEqual(period, ang)) + if (my::AlmostEqualULPs(period, ang)) return 0.0; return ang; diff --git a/geometry/distance.hpp b/geometry/distance.hpp index 47b7225285..1063779bc1 100644 --- a/geometry/distance.hpp +++ b/geometry/distance.hpp @@ -27,7 +27,7 @@ public: m_D = m_P1 - m_P0; m_D2 = Length(m_D); - if (my::AlmostEqual(m_D2, 0.0)) + if (my::AlmostEqualULPs(m_D2, 0.0)) { // make zero vector - then all DotProduct will be equal to zero m_D = m2::PointD::Zero(); diff --git a/geometry/geometry_tests/angle_test.cpp b/geometry/geometry_tests/angle_test.cpp index 54fd651a0d..866b2b904e 100644 --- a/geometry/geometry_tests/angle_test.cpp +++ b/geometry/geometry_tests/angle_test.cpp @@ -31,12 +31,12 @@ UNIT_TEST(Atan) UNIT_TEST(Atan2) { - TEST_ALMOST_EQUAL(atan2(1, 0), pi/2.0, ()); - TEST_ALMOST_EQUAL(atan2(-1, 0), -pi/2.0, ()); - TEST_ALMOST_EQUAL(atan2(0, 1), 0.0, ()); - TEST_ALMOST_EQUAL(atan2(0, -1), pi, ()); + TEST_ALMOST_EQUAL_ULPS(atan2(1, 0), pi/2.0, ()); + TEST_ALMOST_EQUAL_ULPS(atan2(-1, 0), -pi/2.0, ()); + TEST_ALMOST_EQUAL_ULPS(atan2(0, 1), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(atan2(0, -1), pi, ()); - TEST_ALMOST_EQUAL(atan2(1, 1), pi/4.0, ()); + TEST_ALMOST_EQUAL_ULPS(atan2(1, 1), pi/4.0, ()); } namespace @@ -67,16 +67,16 @@ UNIT_TEST(Average) UNIT_TEST(ShortestDistance) { - TEST_ALMOST_EQUAL(ang::GetShortestDistance(0, math::pi), math::pi, ()); - TEST_ALMOST_EQUAL(ang::GetShortestDistance(0, math::pi + 1), -math::pi + 1, ()); + TEST_ALMOST_EQUAL_ULPS(ang::GetShortestDistance(0, math::pi), math::pi, ()); + TEST_ALMOST_EQUAL_ULPS(ang::GetShortestDistance(0, math::pi + 1), -math::pi + 1, ()); - TEST_ALMOST_EQUAL(ang::GetShortestDistance(math::pi - 1, 0), -math::pi + 1, ()); - TEST_ALMOST_EQUAL(ang::GetShortestDistance(math::pi + 1, 0), math::pi - 1, ()); + TEST_ALMOST_EQUAL_ULPS(ang::GetShortestDistance(math::pi - 1, 0), -math::pi + 1, ()); + TEST_ALMOST_EQUAL_ULPS(ang::GetShortestDistance(math::pi + 1, 0), math::pi - 1, ()); } UNIT_TEST(TwoVectorsAngle){ - TEST_ALMOST_EQUAL(ang::TwoVectorsAngle(m2::Point({0, 0}), + TEST_ALMOST_EQUAL_ULPS(ang::TwoVectorsAngle(m2::Point({0, 0}), m2::Point({0, 1}), m2::Point(1, 0)), 3 * math::pi2, ()); - TEST_ALMOST_EQUAL(ang::TwoVectorsAngle(m2::Point({1, 1}), + TEST_ALMOST_EQUAL_ULPS(ang::TwoVectorsAngle(m2::Point({1, 1}), m2::Point({2, 2}), m2::Point(1, 2)), math::pi4, ()); } diff --git a/geometry/geometry_tests/distance_test.cpp b/geometry/geometry_tests/distance_test.cpp index e3f23252a8..aff4236b85 100644 --- a/geometry/geometry_tests/distance_test.cpp +++ b/geometry/geometry_tests/distance_test.cpp @@ -8,13 +8,13 @@ void FloatingPointsTest() m2::DistanceToLineSquare d; d.SetBounds(PointT(-1, 3), PointT(2, 1)); - TEST_ALMOST_EQUAL(d(PointT(-1, 3)), 0.0, ()); - TEST_ALMOST_EQUAL(d(PointT(2, 1)), 0.0, ()); - TEST_ALMOST_EQUAL(d(PointT(-0.5, 0.5)), 3.25, ()); - TEST_ALMOST_EQUAL(d(PointT(3.5, 0.0)), 3.25, ()); - TEST_ALMOST_EQUAL(d(PointT(4.0, 4.0)), 13.0, ()); - TEST_ALMOST_EQUAL(d(PointT(0.5, 2.0)), 0.0, ()); - TEST_ALMOST_EQUAL(d(PointT(0.0, 1.25)), 0.5 * 0.5 + 0.75 * 0.75, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(-1, 3)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(2, 1)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(-0.5, 0.5)), 3.25, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(3.5, 0.0)), 3.25, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(4.0, 4.0)), 13.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(0.5, 2.0)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(PointT(0.0, 1.25)), 0.5 * 0.5 + 0.75 * 0.75, ()); } UNIT_TEST(DistanceToLineSquare2D_Floating) @@ -28,13 +28,13 @@ UNIT_TEST(DistanceToLineSquare2D_Integer) m2::DistanceToLineSquare d; d.SetBounds(m2::PointI(-1, 3), m2::PointI(2, 1)); - TEST_ALMOST_EQUAL(d(m2::PointI(-1, 3)), 0.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointI(2, 1)), 0.0, ()); - TEST_ALMOST_EQUAL(d(m2::PointI(4, 4)), 13.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(-1, 3)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(2, 1)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(4, 4)), 13.0, ()); double const sqSin = 4.0 / m2::PointI(-1, 3).SquareLength(m2::PointI(2, 1)); - TEST_ALMOST_EQUAL(d(m2::PointI(0, 1)), 4.0*sqSin, ()); - TEST_ALMOST_EQUAL(d(m2::PointI(-1, 1)), 9.0*sqSin, ()); + TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(0, 1)), 4.0*sqSin, ()); + TEST_ALMOST_EQUAL_ULPS(d(m2::PointI(-1, 1)), 9.0*sqSin, ()); } UNIT_TEST(DistanceToLineSquare2D_DegenerateSection) @@ -43,10 +43,10 @@ UNIT_TEST(DistanceToLineSquare2D_DegenerateSection) m2::DistanceToLineSquare

d; d.SetBounds(P(5, 5), P(5, 5)); - TEST_ALMOST_EQUAL(d(P(5, 5)), 0.0, ()); - TEST_ALMOST_EQUAL(d(P(6, 6)), 2.0, ()); - TEST_ALMOST_EQUAL(d(P(0, 0)), 50.0, ()); - TEST_ALMOST_EQUAL(d(P(-1, -2)), 36.0 + 49.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(P(5, 5)), 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(P(6, 6)), 2.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(P(0, 0)), 50.0, ()); + TEST_ALMOST_EQUAL_ULPS(d(P(-1, -2)), 36.0 + 49.0, ()); } UNIT_TEST(PointProjectionTests_Smoke) @@ -71,6 +71,6 @@ UNIT_TEST(PointProjectionTests_Smoke) for (size_t i = 0; i < ARRAY_SIZE(arr); ++i) { p.SetBounds(arr[i][1], arr[i][2]); - TEST(m2::AlmostEqual(p(arr[i][0]), arr[i][3]), (i)); + TEST(m2::AlmostEqualULPs(p(arr[i][0]), arr[i][3]), (i)); } } diff --git a/geometry/geometry_tests/point_test.cpp b/geometry/geometry_tests/point_test.cpp index 8024b4281a..116c8ef246 100644 --- a/geometry/geometry_tests/point_test.cpp +++ b/geometry/geometry_tests/point_test.cpp @@ -63,22 +63,22 @@ UNIT_TEST(GetArrowPoints) { array arrPntsFlt; m2::GetArrowPoints(m2::PointF(0, 0), m2::PointF(1, 0), 1.f, 1.f, arrPntsFlt); - TEST(m2::AlmostEqual(arrPntsFlt[0], m2::PointF(1.f, 1.f)), ()); - TEST(m2::AlmostEqual(arrPntsFlt[1], m2::PointF(2.f, 0.f)), ()); - TEST(m2::AlmostEqual(arrPntsFlt[2], m2::PointF(1.f, -1.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsFlt[0], m2::PointF(1.f, 1.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsFlt[1], m2::PointF(2.f, 0.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsFlt[2], m2::PointF(1.f, -1.f)), ()); array arrPntsDbl; m2::GetArrowPoints(m2::PointD(-1., 2.), m2::PointD(-1., 100.), 2., 5., arrPntsDbl); - TEST(m2::AlmostEqual(arrPntsDbl[0], m2::PointD(-3.f, 100.f)), ()); - TEST(m2::AlmostEqual(arrPntsDbl[1], m2::PointD(-1.f, 105.f)), ()); - TEST(m2::AlmostEqual(arrPntsDbl[2], m2::PointD(1.f, 100.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsDbl[0], m2::PointD(-3.f, 100.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsDbl[1], m2::PointD(-1.f, 105.f)), ()); + TEST(m2::AlmostEqualULPs(arrPntsDbl[2], m2::PointD(1.f, 100.f)), ()); } UNIT_TEST(PointAtSegment) { - TEST(m2::AlmostEqual(m2::PointAtSegment(m2::PointF(0, 0), m2::PointF(1, 0), 0.5f), m2::PointF(0.5f, 0.f)), ()); - TEST(m2::AlmostEqual(m2::PointAtSegment(m2::PointF(0, 0), m2::PointF(0, 1), 0.3f), m2::PointF(0.f, 0.3f)), ()); - TEST(m2::AlmostEqual(m2::PointAtSegment(m2::PointD(0., 0.), m2::PointD(30., 40.), 5.), m2::PointD(3., 4.)), ()); - TEST(m2::AlmostEqual(m2::PointAtSegment(m2::PointF(-3, -4), m2::PointF(-30, -40), 5.f), m2::PointF(-6.f, -8.f)), ()); - TEST(m2::AlmostEqual(m2::PointAtSegment(m2::PointD(14., -48.), m2::PointD(70., -240.), 25.), m2::PointD(21., -72.)), ()); + TEST(m2::AlmostEqualULPs(m2::PointAtSegment(m2::PointF(0, 0), m2::PointF(1, 0), 0.5f), m2::PointF(0.5f, 0.f)), ()); + TEST(m2::AlmostEqualULPs(m2::PointAtSegment(m2::PointF(0, 0), m2::PointF(0, 1), 0.3f), m2::PointF(0.f, 0.3f)), ()); + TEST(m2::AlmostEqualULPs(m2::PointAtSegment(m2::PointD(0., 0.), m2::PointD(30., 40.), 5.), m2::PointD(3., 4.)), ()); + TEST(m2::AlmostEqualULPs(m2::PointAtSegment(m2::PointF(-3, -4), m2::PointF(-30, -40), 5.f), m2::PointF(-6.f, -8.f)), ()); + TEST(m2::AlmostEqualULPs(m2::PointAtSegment(m2::PointD(14., -48.), m2::PointD(70., -240.), 25.), m2::PointD(21., -72.)), ()); } diff --git a/geometry/geometry_tests/spline_test.cpp b/geometry/geometry_tests/spline_test.cpp index 4b0ccc69cb..f649302c5e 100644 --- a/geometry/geometry_tests/spline_test.cpp +++ b/geometry/geometry_tests/spline_test.cpp @@ -10,8 +10,8 @@ void TestPointDDir(PointD const & dst, PointD const & src) { double len1 = dst.Length(); double len2 = src.Length(); - TEST_ALMOST_EQUAL(dst.x/len1, src.x/len2, ()); - TEST_ALMOST_EQUAL(dst.y/len1, src.y/len2, ()); + TEST_ALMOST_EQUAL_ULPS(dst.x/len1, src.x/len2, ()); + TEST_ALMOST_EQUAL_ULPS(dst.y/len1, src.y/len2, ()); } UNIT_TEST(SmoothedDirections) @@ -202,6 +202,6 @@ UNIT_TEST(Length) double l3 = p3.Length(p4); double l4 = p4.Length(p5); double len2 = l1 + l2 + l3 + l4; - TEST_ALMOST_EQUAL(len1, len2, ()); + TEST_ALMOST_EQUAL_ULPS(len1, len2, ()); } diff --git a/geometry/geometry_tests/vector_test.cpp b/geometry/geometry_tests/vector_test.cpp index 1709833ec1..0b8ea7ee7c 100644 --- a/geometry/geometry_tests/vector_test.cpp +++ b/geometry/geometry_tests/vector_test.cpp @@ -8,7 +8,7 @@ namespace template bool EqualArrays(T (&a1)[N], T (&a2)[N]) { for (size_t i = 0; i < N; ++i) - if (!my::AlmostEqual(a1[i], a2[i])) + if (!my::AlmostEqualULPs(a1[i], a2[i])) return false; return true; } diff --git a/geometry/point2d.hpp b/geometry/point2d.hpp index 4211efab4f..1e1ab3d838 100644 --- a/geometry/point2d.hpp +++ b/geometry/point2d.hpp @@ -43,7 +43,7 @@ namespace m2 bool IsAlmostZero() const { - return AlmostEqual(*this, Point(0,0)); + return AlmostEqualULPs(*this, Point(0,0)); } Point Move(T len, T ang) const @@ -276,7 +276,7 @@ namespace m2 PointT const edgeR = vNext - v; double const cpLR = CrossProduct(edgeR, edgeL); - if (my::AlmostEqual(cpLR, 0.0)) + if (my::AlmostEqualULPs(cpLR, 0.0)) { // Points vPrev, v, vNext placed on one line; // use property that polygon has CCW orientation. @@ -315,9 +315,9 @@ namespace m2 } template - bool AlmostEqual(m2::Point const & a, m2::Point const & b, unsigned int maxULPs = 256) + bool AlmostEqualULPs(m2::Point const & a, m2::Point const & b, unsigned int maxULPs = 256) { - return my::AlmostEqual(a.x, b.x, maxULPs) && my::AlmostEqual(a.y, b.y, maxULPs); + return my::AlmostEqualULPs(a.x, b.x, maxULPs) && my::AlmostEqualULPs(a.y, b.y, maxULPs); } /// Calculate three points of a triangle (p1, p2 and p3) which give an arrow that @@ -327,7 +327,7 @@ namespace m2 template > void GetArrowPoints(PointT const & b, PointT const & e, T w, T l, array, 3> & arrPnts) { - ASSERT(!m2::AlmostEqual(b, e), ()); + ASSERT(!m2::AlmostEqualULPs(b, e), ()); PointT const beVec = e - b; PointT beNormalizedVec = beVec.Normalize(); @@ -385,9 +385,9 @@ namespace my { template -bool AlmostEqual(m2::Point const & p1, m2::Point const & p2, unsigned int maxULPs = 256) +bool AlmostEqualULPs(m2::Point const & p1, m2::Point const & p2, unsigned int maxULPs = 256) { - return m2::AlmostEqual(p1, p2, maxULPs); + return m2::AlmostEqualULPs(p1, p2, maxULPs); } } diff --git a/geometry/polygon.hpp b/geometry/polygon.hpp index 28c4ec0b6c..f36f4e20de 100644 --- a/geometry/polygon.hpp +++ b/geometry/polygon.hpp @@ -49,7 +49,7 @@ size_t FindSingleStrip(size_t n, IsVisibleF isVisible) template bool TestPolygonPreconditions(IterT beg, IterT end) { ASSERT_GREATER ( distance(beg, end), 2, () ); - ASSERT ( !AlmostEqual(*beg, *(--end)), () ); + ASSERT ( !AlmostEqualULPs(*beg, *(--end)), () ); return true; } #endif diff --git a/geometry/region2d.hpp b/geometry/region2d.hpp index 21a8eba738..bbc89068c1 100644 --- a/geometry/region2d.hpp +++ b/geometry/region2d.hpp @@ -18,12 +18,12 @@ namespace m2 template bool EqualPoints(PointT const & p1, PointT const & p2) const { - return m2::AlmostEqual(p1, p2); + return m2::AlmostEqualULPs(p1, p2); } template bool EqualZero(CoordT val, CoordT exp) const { - return my::AlmostEqual(val + exp, exp); + return my::AlmostEqualULPs(val + exp, exp); } }; diff --git a/indexer/indexer_tests/cell_id_test.cpp b/indexer/indexer_tests/cell_id_test.cpp index 90fb16990b..e3e37d2dfb 100644 --- a/indexer/indexer_tests/cell_id_test.cpp +++ b/indexer/indexer_tests/cell_id_test.cpp @@ -31,7 +31,7 @@ UNIT_TEST(CommonCell) namespace { template - bool PairsAlmostEqual(pair const & p1, pair const & p2) + bool PairsAlmostEqualULPs(pair const & p1, pair const & p2) { return fabs(p1.first - p2.first) + fabs(p1.second - p2.second) < 0.00001; } diff --git a/indexer/indexer_tests/geometry_serialization_test.cpp b/indexer/indexer_tests/geometry_serialization_test.cpp index d40b1d111b..5521e694a2 100644 --- a/indexer/indexer_tests/geometry_serialization_test.cpp +++ b/indexer/indexer_tests/geometry_serialization_test.cpp @@ -17,7 +17,7 @@ namespace { bool is_equal(double d1, double d2) { - //return my::AlmostEqual(d1, d2, 100000000); + //return my::AlmostEqualULPs(d1, d2, 100000000); return (fabs(d1 - d2) < MercatorBounds::GetCellID2PointAbsEpsilon()); } diff --git a/indexer/indexer_tests/mercator_test.cpp b/indexer/indexer_tests/mercator_test.cpp index 5c7c8fa931..676b78beee 100644 --- a/indexer/indexer_tests/mercator_test.cpp +++ b/indexer/indexer_tests/mercator_test.cpp @@ -21,11 +21,11 @@ UNIT_TEST(Mercator_Grid) double const lon1 = MercatorBounds::XToLon(x); // Normal assumption for any projection. - TEST_ALMOST_EQUAL(static_cast(lat), lat1, ()); - TEST_ALMOST_EQUAL(static_cast(lon), lon1, ()); + TEST_ALMOST_EQUAL_ULPS(static_cast(lat), lat1, ()); + TEST_ALMOST_EQUAL_ULPS(static_cast(lon), lon1, ()); // x is actually lon unmodified. - TEST_ALMOST_EQUAL(x, static_cast(lon), ()); + TEST_ALMOST_EQUAL_ULPS(x, static_cast(lon), ()); } } } diff --git a/map/map_tests/bookmarks_test.cpp b/map/map_tests/bookmarks_test.cpp index 76ea9b2d62..8edd6d69f6 100644 --- a/map/map_tests/bookmarks_test.cpp +++ b/map/map_tests/bookmarks_test.cpp @@ -136,8 +136,8 @@ char const * kmlString = bm = cat.GetBookmark(1); m2::PointD org = bm->GetOrg(); - TEST_ALMOST_EQUAL(MercatorBounds::XToLon(org.x), 27.566765, ()); - TEST_ALMOST_EQUAL(MercatorBounds::YToLat(org.y), 53.900047, ()); + TEST_ALMOST_EQUAL_ULPS(MercatorBounds::XToLon(org.x), 27.566765, ()); + TEST_ALMOST_EQUAL_ULPS(MercatorBounds::YToLat(org.y), 53.900047, ()); TEST_EQUAL(bm->GetName(), "From: Минск, Минская область, Беларусь", ()); TEST_EQUAL(bm->GetType(), "placemark-blue", ()); TEST_EQUAL(bm->GetDescription(), "", ()); @@ -145,8 +145,8 @@ char const * kmlString = bm = cat.GetBookmark(0); org = bm->GetOrg(); - TEST_ALMOST_EQUAL(MercatorBounds::XToLon(org.x), 27.551532, ()); - TEST_ALMOST_EQUAL(MercatorBounds::YToLat(org.y), 53.89306, ()); + TEST_ALMOST_EQUAL_ULPS(MercatorBounds::XToLon(org.x), 27.551532, ()); + TEST_ALMOST_EQUAL_ULPS(MercatorBounds::YToLat(org.y), 53.89306, ()); TEST_EQUAL(bm->GetName(), "", ()); TEST_EQUAL(bm->GetDescription(), "Amps & ", ()); TEST_EQUAL(bm->GetTimeStamp(), my::INVALID_TIME_STAMP, ()); @@ -313,7 +313,7 @@ UNIT_TEST(Bookmarks_Getting) fm.ShowRect(m2::RectD(0, 0, 80, 40)); // This is not correct because Framework::OnSize doesn't work until SetRenderPolicy is called. - //TEST(m2::AlmostEqual(m2::PointD(400, 200), pixC), (pixC)); + //TEST(m2::AlmostEqualULPs(m2::PointD(400, 200), pixC), (pixC)); char const * arrCat[] = { "cat1", "cat2", "cat3" }; for (int i = 0; i < 3; ++i) @@ -605,9 +605,9 @@ char const * kmlString3 = return false; if (b1.GetType() != b2.GetType()) return false; - if (!m2::AlmostEqual(b1.GetOrg(), b2.GetOrg())) + if (!m2::AlmostEqualULPs(b1.GetOrg(), b2.GetOrg())) return false; - if (!my::AlmostEqual(b1.GetScale(), b2.GetScale())) + if (!my::AlmostEqualULPs(b1.GetScale(), b2.GetScale())) return false; // do not check timestamp @@ -639,7 +639,7 @@ UNIT_TEST(Bookmarks_SpecialXMLNames) namespace { -bool AlmostEqual(double const & a, double const & b) +bool AlmostEqualULPs(double const & a, double const & b) { if (fabs(a - b) <= 1e-6) return true; @@ -666,7 +666,7 @@ UNIT_TEST(TrackParsingTest_1) { Track const * track = cat->GetTrack(i); TEST_EQUAL(names[i], track->GetName(), ()); - TEST(AlmostEqual(track->GetLengthMeters(), length[i]), (track->GetLengthMeters(), length[i])); + TEST(AlmostEqualULPs(track->GetLengthMeters(), length[i]), (track->GetLengthMeters(), length[i])); TEST_EQUAL(col[i], track->GetMainColor(), ()); } } diff --git a/map/map_tests/ge0_parser_tests.cpp b/map/map_tests/ge0_parser_tests.cpp index 639e60e047..74960a1eaf 100644 --- a/map/map_tests/ge0_parser_tests.cpp +++ b/map/map_tests/ge0_parser_tests.cpp @@ -55,7 +55,7 @@ void TestSuccess(char const * s, double lat, double lon, double zoom, char const TEST(fabs(apiPoint.m_lat - lat) <= latEps, (s, zoom, lat, lon, name)); TEST(fabs(apiPoint.m_lon - lon) <= lonEps, (s, zoom, lat, lon, name)); - TEST_ALMOST_EQUAL(parsedZoomLevel, zoom, (s, zoom, lat, lon, name)); + TEST_ALMOST_EQUAL_ULPS(parsedZoomLevel, zoom, (s, zoom, lat, lon, name)); } void TestFailure(char const * s) diff --git a/map/map_tests/geourl_test.cpp b/map/map_tests/geourl_test.cpp index 020678fcde..98df968d51 100644 --- a/map/map_tests/geourl_test.cpp +++ b/map/map_tests/geourl_test.cpp @@ -10,15 +10,15 @@ UNIT_TEST(ProcessURL_Smoke) Info info; ParseGeoURL("geo:53.666,27.666", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 53.666, ()); - TEST_ALMOST_EQUAL(info.m_lon, 27.666, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 53.666, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 27.666, ()); info.Reset(); ParseGeoURL("geo://point/?lon=27.666&lat=53.666&zoom=10", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 53.666, ()); - TEST_ALMOST_EQUAL(info.m_lon, 27.666, ()); - TEST_ALMOST_EQUAL(info.m_zoom, 10.0, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 53.666, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 27.666, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_zoom, 10.0, ()); info.Reset(); ParseGeoURL("geo:53.666", info); @@ -31,8 +31,8 @@ UNIT_TEST(ProcessURL_Smoke) info.Reset(); ParseGeoURL("mapswithme:32.22, 123.33/showmethemagic", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 32.22, ()); - TEST_ALMOST_EQUAL(info.m_lon, 123.33, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 32.22, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 123.33, ()); } UNIT_TEST(ProcessURL_Instagram) @@ -40,9 +40,9 @@ UNIT_TEST(ProcessURL_Instagram) Info info; ParseGeoURL("geo:0,0?z=14&q=54.683486138,25.289361259 (Forto%20dvaras)", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 54.683486138, ()); - TEST_ALMOST_EQUAL(info.m_lon, 25.289361259, ()); - TEST_ALMOST_EQUAL(info.m_zoom, 14.0, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 54.683486138, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 25.289361259, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_zoom, 14.0, ()); } UNIT_TEST(ProcessURL_GoogleMaps) @@ -50,14 +50,14 @@ UNIT_TEST(ProcessURL_GoogleMaps) Info info; ParseGeoURL("https://maps.google.com/maps?z=16&q=Mezza9%401.3067198,103.83282", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 1.3067198, ()); - TEST_ALMOST_EQUAL(info.m_lon, 103.83282, ()); - TEST_ALMOST_EQUAL(info.m_zoom, 16.0, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 1.3067198, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 103.83282, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_zoom, 16.0, ()); info.Reset(); ParseGeoURL("https://maps.google.com/maps?z=16&q=House+of+Seafood+%40+180%401.356706,103.87591", info); TEST(info.IsValid(), ()); - TEST_ALMOST_EQUAL(info.m_lat, 1.356706, ()); - TEST_ALMOST_EQUAL(info.m_lon, 103.87591, ()); - TEST_ALMOST_EQUAL(info.m_zoom, 16.0, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lat, 1.356706, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_lon, 103.87591, ()); + TEST_ALMOST_EQUAL_ULPS(info.m_zoom, 16.0, ()); } diff --git a/map/map_tests/kmz_unarchive_test.cpp b/map/map_tests/kmz_unarchive_test.cpp index f97981887c..0de0a2503a 100644 --- a/map/map_tests/kmz_unarchive_test.cpp +++ b/map/map_tests/kmz_unarchive_test.cpp @@ -43,16 +43,16 @@ UNIT_TEST(Open_KMZ_Test) Bookmark const * bm = cat.GetBookmark(5); TEST_EQUAL(bm->GetName(), ("Lahaina Breakwall"), ("KML wrong name!")); TEST_EQUAL(bm->GetType(), "placemark-red", ("KML wrong type!")); - TEST_ALMOST_EQUAL(bm->GetOrg().x, -156.6777046791284, ("KML wrong org x!")); - TEST_ALMOST_EQUAL(bm->GetOrg().y, 21.34256685860084, ("KML wrong org y!")); + TEST_ALMOST_EQUAL_ULPS(bm->GetOrg().x, -156.6777046791284, ("KML wrong org x!")); + TEST_ALMOST_EQUAL_ULPS(bm->GetOrg().y, 21.34256685860084, ("KML wrong org y!")); TEST_EQUAL(bm->GetScale(), -1, ("KML wrong scale!")); } { Bookmark const * bm = cat.GetBookmark(4); TEST_EQUAL(bm->GetName(), ("Seven Sacred Pools, Kipahulu"), ("KML wrong name!")); TEST_EQUAL(bm->GetType(), "placemark-red", ("KML wrong type!")); - TEST_ALMOST_EQUAL(bm->GetOrg().x, -156.0405130750025, ("KML wrong org x!")); - TEST_ALMOST_EQUAL(bm->GetOrg().y, 21.12480639056074, ("KML wrong org y!")); + TEST_ALMOST_EQUAL_ULPS(bm->GetOrg().x, -156.0405130750025, ("KML wrong org x!")); + TEST_ALMOST_EQUAL_ULPS(bm->GetOrg().y, 21.12480639056074, ("KML wrong org y!")); TEST_EQUAL(bm->GetScale(), -1, ("KML wrong scale!")); } } diff --git a/map/map_tests/mwm_url_tests.cpp b/map/map_tests/mwm_url_tests.cpp index f021d00235..d6df81e8d7 100644 --- a/map/map_tests/mwm_url_tests.cpp +++ b/map/map_tests/mwm_url_tests.cpp @@ -48,7 +48,7 @@ namespace { double tLat, tLon; GetMark(index)->GetLatLon(tLat, tLon); - return my::AlmostEqual(tLat, lat) && my::AlmostEqual(tLon, lon); + return my::AlmostEqualULPs(tLat, lat) && my::AlmostEqualULPs(tLon, lon); } bool TestName(int index, string const & name) diff --git a/map/map_tests/navigator_test.cpp b/map/map_tests/navigator_test.cpp index ca816e5d8b..cadeccbcbf 100644 --- a/map/map_tests/navigator_test.cpp +++ b/map/map_tests/navigator_test.cpp @@ -62,7 +62,7 @@ namespace P const & pxP = arr[i]; P const gP = nav.PtoG(pxP); P const pxP2 = nav.GtoP(gP); - TEST(m2::AlmostEqual(pxP, pxP2), (pxP, pxP2)); + TEST(m2::AlmostEqualULPs(pxP, pxP2), (pxP, pxP2)); } } } diff --git a/map/map_tests/tracks_tests.cpp b/map/map_tests/tracks_tests.cpp index 776600ec71..3c040fdb18 100644 --- a/map/map_tests/tracks_tests.cpp +++ b/map/map_tests/tracks_tests.cpp @@ -22,16 +22,16 @@ UNIT_TEST(ClipArrowBodyAndGetArrowDirection) TEST(result, ()); - TEST(m2::AlmostEqual(arrowDirection.first, m2::PointD(4452740.7948958352, -8008725.2632638067)), ()); - TEST(m2::AlmostEqual(arrowDirection.second, m2::PointD(4452736.0942427581, -8008728.9920519013)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.first, m2::PointD(4452740.7948958352, -8008725.2632638067)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.second, m2::PointD(4452736.0942427581, -8008728.9920519013)), ()); TEST_EQUAL(ptsTurn.size(), 4, ()); if (ptsTurn.size() == 4) { - TEST(m2::AlmostEqual(ptsTurn[0], m2::PointD(4452754.7223071428, -8008711.0281532137)), ()); - TEST(m2::AlmostEqual(ptsTurn[1], m2::PointD(4452746.2789910901, -8008720.9130110294)), ()); - TEST(m2::AlmostEqual(ptsTurn[2], m2::PointD(4452746.2789910901, -8008720.9130110294)), ()); - TEST(m2::AlmostEqual(ptsTurn[3], m2::PointD(4452736.0942427581, -8008728.9920519013)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[0], m2::PointD(4452754.7223071428, -8008711.0281532137)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[1], m2::PointD(4452746.2789910901, -8008720.9130110294)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[2], m2::PointD(4452746.2789910901, -8008720.9130110294)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[3], m2::PointD(4452736.0942427581, -8008728.9920519013)), ()); } } /// test 2 @@ -58,16 +58,16 @@ UNIT_TEST(ClipArrowBodyAndGetArrowDirection) TEST(result, ()); - TEST(m2::AlmostEqual(arrowDirection.first, m2::PointD(12913561.071263125, -23246677.630072903)), ()); - TEST(m2::AlmostEqual(arrowDirection.second, m2::PointD(12913566.510263896, -23246675.096839666)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.first, m2::PointD(12913561.071263125, -23246677.630072903)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.second, m2::PointD(12913566.510263896, -23246675.096839666)), ()); TEST_EQUAL(ptsTurn.size(), 4, ()); if (ptsTurn.size() == 4) { - TEST(m2::AlmostEqual(ptsTurn[0], m2::PointD(12913559.904797219, -23246692.509336423)), ()); - TEST(m2::AlmostEqual(ptsTurn[1], m2::PointD(12913554.725762228, -23246680.585511677)), ()); - TEST(m2::AlmostEqual(ptsTurn[2], m2::PointD(12913554.725762228, -23246680.585511677)), ()); - TEST(m2::AlmostEqual(ptsTurn[3], m2::PointD(12913566.510263896, -23246675.096839666)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[0], m2::PointD(12913559.904797219, -23246692.509336423)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[1], m2::PointD(12913554.725762228, -23246680.585511677)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[2], m2::PointD(12913554.725762228, -23246680.585511677)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[3], m2::PointD(12913566.510263896, -23246675.096839666)), ()); } } /// test 3 @@ -86,16 +86,16 @@ UNIT_TEST(ClipArrowBodyAndGetArrowDirection) TEST(result, ()); - TEST(m2::AlmostEqual(arrowDirection.first, m2::PointD(8815488.4750074092, -15869656.085066356)), ()); - TEST(m2::AlmostEqual(arrowDirection.second, m2::PointD(8815488.051212335, -15869655.179308256)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.first, m2::PointD(8815488.4750074092, -15869656.085066356)), ()); + TEST(m2::AlmostEqualULPs(arrowDirection.second, m2::PointD(8815488.051212335, -15869655.179308256)), ()); TEST_EQUAL(ptsTurn.size(), 4, ()); if (ptsTurn.size() == 4) { - TEST(m2::AlmostEqual(ptsTurn[0], m2::PointD(8815498.1476540733, -15869664.964575503)), ()); - TEST(m2::AlmostEqual(ptsTurn[1], m2::PointD(8815493.5605482981, -15869666.954163551)), ()); - TEST(m2::AlmostEqual(ptsTurn[2], m2::PointD(8815493.5605482981, -15869666.954163551)), ()); - TEST(m2::AlmostEqual(ptsTurn[3], m2::PointD(8815488.051212335, -15869655.179308256)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[0], m2::PointD(8815498.1476540733, -15869664.964575503)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[1], m2::PointD(8815493.5605482981, -15869666.954163551)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[2], m2::PointD(8815493.5605482981, -15869666.954163551)), ()); + TEST(m2::AlmostEqualULPs(ptsTurn[3], m2::PointD(8815488.051212335, -15869655.179308256)), ()); } } } @@ -127,10 +127,10 @@ UNIT_TEST(MergeArrows) TEST_EQUAL(ptsCurrentTurn.size(), 4, ()); if (ptsCurrentTurn.size() == 4) { - TEST(m2::AlmostEqual(ptsCurrentTurn[0], m2::PointD(942781.30335104989, -1704679.4222819123)), ()); - TEST(m2::AlmostEqual(ptsCurrentTurn[1], m2::PointD(942770.40578790777, -1704686.5105198855)), ()); - TEST(m2::AlmostEqual(ptsCurrentTurn[2], m2::PointD(942770.40578790777, -1704686.5105198855)), ()); - TEST(m2::AlmostEqual(ptsCurrentTurn[3], m2::PointD(942772.83924417838, -1704690.2283002988)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[0], m2::PointD(942781.30335104989, -1704679.4222819123)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[1], m2::PointD(942770.40578790777, -1704686.5105198855)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[2], m2::PointD(942770.40578790777, -1704686.5105198855)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[3], m2::PointD(942772.83924417838, -1704690.2283002988)), ()); } } @@ -149,9 +149,9 @@ UNIT_TEST(MergeArrows) TEST_EQUAL(ptsCurrentTurn.size(), 3, ()); if (ptsCurrentTurn.size() == 3) { - TEST(m2::AlmostEqual(ptsCurrentTurn[0], m2::PointD(5076492.1418151176, -9129678.8727533203)), ()); - TEST(m2::AlmostEqual(ptsCurrentTurn[1], m2::PointD(5076492.1418151176, -9129678.8727533203)), ()); - TEST(m2::AlmostEqual(ptsCurrentTurn[2], m2::PointD(5076492.2410291191, -9129680.013714334)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[0], m2::PointD(5076492.1418151176, -9129678.8727533203)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[1], m2::PointD(5076492.1418151176, -9129678.8727533203)), ()); + TEST(m2::AlmostEqualULPs(ptsCurrentTurn[2], m2::PointD(5076492.2410291191, -9129680.013714334)), ()); } } } diff --git a/map/navigator.cpp b/map/navigator.cpp index 7097fda09d..b32a723df6 100644 --- a/map/navigator.cpp +++ b/map/navigator.cpp @@ -440,11 +440,11 @@ namespace void OnStep(double ts) { double elapsed = ts - m_startTime; - if (my::AlmostEqual(elapsed, 0.0)) + if (my::AlmostEqualULPs(elapsed, 0.0)) return; double t = elapsed / m_deltaTime; - if (t > 1.0 || my::AlmostEqual(t, 1.0)) + if (t > 1.0 || my::AlmostEqualULPs(t, 1.0)) { m_fn(m_finger1Start + m_deltaFinger1, m_finger2Start + m_deltaFinger2, m_prevPt1, m_prevPt2); End(); diff --git a/map/route_track.cpp b/map/route_track.cpp index 2d76a88ad9..6628e4d570 100644 --- a/map/route_track.cpp +++ b/map/route_track.cpp @@ -48,7 +48,7 @@ bool ClipArrowBodyAndGetArrowDirection(vector & ptsTurn, pair & ptsTurn, pair & ptsTurn, pair & ptsTurn, pair & ptsCurrentTurn, vector const & auto const currentTurnBeforeEnd = ptsCurrentTurn.end() - 1; for (auto t = ptsCurrentTurn.begin() + 1; t != currentTurnBeforeEnd; ++t) { - if (m2::AlmostEqual(*t, pivotPnt)) + if (m2::AlmostEqualULPs(*t, pivotPnt)) { ptsCurrentTurn.erase(t + 1, ptsCurrentTurn.end()); return true; diff --git a/map/routing_session.cpp b/map/routing_session.cpp index 75b56ed1de..cef5f06f49 100644 --- a/map/routing_session.cpp +++ b/map/routing_session.cpp @@ -121,7 +121,7 @@ RoutingSession::State RoutingSession::OnLocationPositionChanged(m2::PointD const // Distance from the last known projection on route // (check if we are moving far from the last known projection). double const dist = m_route.GetCurrentSqDistance(position); - if (dist > m_lastDistance || my::AlmostEqual(dist, m_lastDistance, 1 << 16)) + if (dist > m_lastDistance || my::AlmostEqualULPs(dist, m_lastDistance, 1 << 16)) { ++m_moveAwayCounter; m_lastDistance = dist; diff --git a/map/user_mark_dl_cache.hpp b/map/user_mark_dl_cache.hpp index 68c18a0d72..8994f8c907 100644 --- a/map/user_mark_dl_cache.hpp +++ b/map/user_mark_dl_cache.hpp @@ -27,7 +27,7 @@ public: { if (m_name != other.m_name) return m_name < other.m_name; - if (!my::AlmostEqual(m_depthLayer, other.m_depthLayer)) + if (!my::AlmostEqualULPs(m_depthLayer, other.m_depthLayer)) return m_depthLayer < other.m_depthLayer; return m_anchor < other.m_anchor; diff --git a/platform/measurement_utils.cpp b/platform/measurement_utils.cpp index 38793c79a7..c5111fcfee 100644 --- a/platform/measurement_utils.cpp +++ b/platform/measurement_utils.cpp @@ -92,7 +92,7 @@ string FormatLatLonAsDMSImpl(double value, char positive, char negative, int dac // This condition is too heavy for production purposes (but more correct). //if (my::rounds(value * 3600.0 * pow(10, dac)) != 0) - if (!AlmostEqual(value, 0.0)) + if (!AlmostEqualULPs(value, 0.0)) { char postfix = positive; if (value < 0.0) diff --git a/platform/platform_tests/jansson_test.cpp b/platform/platform_tests/jansson_test.cpp index 5af6d4f965..827d2f2879 100644 --- a/platform/platform_tests/jansson_test.cpp +++ b/platform/platform_tests/jansson_test.cpp @@ -19,15 +19,15 @@ UNIT_TEST(Jansson_Smoke) json_t * lat = json_object_get(location, "latitude"); TEST(json_is_real(lat), ()); - TEST_ALMOST_EQUAL(json_real_value(lat), 47.3345141, ()); + TEST_ALMOST_EQUAL_ULPS(json_real_value(lat), 47.3345141, ()); json_t * lon = json_object_get(location, "longitude"); TEST(json_is_real(lon), ()); - TEST_ALMOST_EQUAL(json_real_value(lon), 8.5312839, ()); + TEST_ALMOST_EQUAL_ULPS(json_real_value(lon), 8.5312839, ()); json_t * acc = json_object_get(location, "accuracy"); TEST(json_is_real(acc), ()); - TEST_ALMOST_EQUAL(json_real_value(acc), 22.0, ()); + TEST_ALMOST_EQUAL_ULPS(json_real_value(acc), 22.0, ()); bool wasException = false; try diff --git a/platform/platform_tests/location_test.cpp b/platform/platform_tests/location_test.cpp index 13db41e70b..f2a1c3b531 100644 --- a/platform/platform_tests/location_test.cpp +++ b/platform/platform_tests/location_test.cpp @@ -23,18 +23,18 @@ UNIT_TEST(IsLonValid) UNIT_TEST(AngleToBearing) { - TEST_ALMOST_EQUAL(location::AngleToBearing(0.), 90., ()); - TEST_ALMOST_EQUAL(location::AngleToBearing(30.), 60., ()); - TEST_ALMOST_EQUAL(location::AngleToBearing(100.), 350., ()); - TEST_ALMOST_EQUAL(location::AngleToBearing(370.), 80., ()); - TEST_ALMOST_EQUAL(location::AngleToBearing(-370.), 100., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(0.), 90., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(30.), 60., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(100.), 350., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(370.), 80., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(-370.), 100., ()); } UNIT_TEST(BearingToAngle) { - TEST_ALMOST_EQUAL(location::BearingToAngle(0.), 90., ()); - TEST_ALMOST_EQUAL(location::BearingToAngle(30.), 60., ()); - TEST_ALMOST_EQUAL(location::BearingToAngle(100.), 350., ()); - TEST_ALMOST_EQUAL(location::BearingToAngle(370.), 80., ()); - TEST_ALMOST_EQUAL(location::AngleToBearing(-370.), 100., ()); + TEST_ALMOST_EQUAL_ULPS(location::BearingToAngle(0.), 90., ()); + TEST_ALMOST_EQUAL_ULPS(location::BearingToAngle(30.), 60., ()); + TEST_ALMOST_EQUAL_ULPS(location::BearingToAngle(100.), 350., ()); + TEST_ALMOST_EQUAL_ULPS(location::BearingToAngle(370.), 80., ()); + TEST_ALMOST_EQUAL_ULPS(location::AngleToBearing(-370.), 100., ()); } diff --git a/render/cpu_drawer.cpp b/render/cpu_drawer.cpp index 6d48865e3b..cb275c4d92 100644 --- a/render/cpu_drawer.cpp +++ b/render/cpu_drawer.cpp @@ -276,7 +276,7 @@ void CPUDrawer::DrawSearchArrow(double azimut) } double cosa = cos(azIn2Pi); - if (!my::AlmostEqual(cosa, 0.0)) + if (!my::AlmostEqualULPs(cosa, 0.0)) length = length / fabs(cosa); m2::PointD offsetPoint(length - 0.65 * symbolRect.SizeY(), 0.0); diff --git a/render/geometry_processors.cpp b/render/geometry_processors.cpp index 35797d8b81..d2559ec7c2 100644 --- a/render/geometry_processors.cpp +++ b/render/geometry_processors.cpp @@ -54,7 +54,7 @@ namespace gp } else { - if (my::AlmostEqual(m_intervals->back(), clipStart)) + if (my::AlmostEqualULPs(m_intervals->back(), clipStart)) m_intervals->back() = clipEnd; else { diff --git a/routing/road_graph.cpp b/routing/road_graph.cpp index 99175ca015..df03f016a3 100644 --- a/routing/road_graph.cpp +++ b/routing/road_graph.cpp @@ -35,7 +35,7 @@ inline double TimeBetweenSec(Junction const & j1, Junction const & j2, double sp return TimeBetweenSec(j1.GetPoint(), j2.GetPoint(), speedMPS); } -inline bool PointsAlmostEqual(const m2::PointD & pt1, const m2::PointD & pt2) +inline bool PointsAlmostEqualULPs(const m2::PointD & pt1, const m2::PointD & pt2) { double constexpr EPSILON = 1e-6; if ((pt2.x < (pt1.x - EPSILON)) || (pt2.x > (pt1.x + EPSILON))) @@ -156,7 +156,7 @@ void IRoadGraph::CrossEdgesLoader::operator()(uint32_t featureId, RoadInfo const { m2::PointD const & p = roadInfo.m_points[i]; - if (!PointsAlmostEqual(m_cross, p)) + if (!PointsAlmostEqualULPs(m_cross, p)) continue; if (i > 0) diff --git a/routing/route.cpp b/routing/route.cpp index 9758a7bed4..eca1f0f0e0 100644 --- a/routing/route.cpp +++ b/routing/route.cpp @@ -134,7 +134,7 @@ uint32_t Route::GetTime() const ASSERT_LESS_OR_EQUAL(m_times[idx].first, m_poly.GetSize(), ()); double const dist = distFn(idx > 0 ? m_times[idx - 1].first : 0, m_times[idx].first + 1); - if (!my::AlmostEqual(dist, 0.)) + if (!my::AlmostEqualULPs(dist, 0.)) { double const distRemain = distFn(m_current.m_ind, m_times[idx].first + 1) - MercatorBounds::DistanceOnEarth(m_current.m_pt, m_poly.GetPoint(m_current.m_ind)); @@ -219,7 +219,7 @@ double Route::GetPolySegAngle(size_t ind) const { p2 = m_poly.GetPoint(i); } - while (m2::AlmostEqual(p1, p2) && ++i < polySz); + while (m2::AlmostEqualULPs(p1, p2) && ++i < polySz); return (i == polySz) ? 0 : my::RadToDeg(ang::AngleTo(p1, p2)); } diff --git a/search/search_query.cpp b/search/search_query.cpp index e65ee4178c..e4abb0b496 100644 --- a/search/search_query.cpp +++ b/search/search_query.cpp @@ -182,7 +182,7 @@ void Query::SetViewportByIndex(MWMVectorT const & mwmsInfo, m2::RectD const & vi void Query::SetPosition(m2::PointD const & pos) { - if (!m2::AlmostEqual(pos, m_position)) + if (!m2::AlmostEqualULPs(pos, m_position)) { storage::CountryInfo ci; m_pInfoGetter->GetRegionInfo(pos, ci); diff --git a/search/search_tests/house_detector_tests.cpp b/search/search_tests/house_detector_tests.cpp index 823a8f808b..1f03cb824d 100644 --- a/search/search_tests/house_detector_tests.cpp +++ b/search/search_tests/house_detector_tests.cpp @@ -278,17 +278,17 @@ UNIT_TEST(HS_FindHouseSmoke) { vector streetName(1, "Московская улица"); - TEST_ALMOST_EQUAL(FindHouse(index, streetName, "7", 100), + TEST_ALMOST_EQUAL_ULPS(FindHouse(index, streetName, "7", 100), m2::PointD(27.539850827603416406, 64.222406776416349317), ()); } { vector streetName(1, "проспект Независимости"); - TEST_ALMOST_EQUAL(FindHouse(index, streetName, "10", 40), + TEST_ALMOST_EQUAL_ULPS(FindHouse(index, streetName, "10", 40), m2::PointD(27.551358845467561309, 64.234708728154814139), ()); } { vector streetName(1, "улица Ленина"); - TEST_ALMOST_EQUAL(FindHouse(index, streetName, "9", 50), + TEST_ALMOST_EQUAL_ULPS(FindHouse(index, streetName, "9", 50), m2::PointD(27.560341563525355468, 64.240918042070561), ()); } } diff --git a/search/search_tests/latlon_match_test.cpp b/search/search_tests/latlon_match_test.cpp index 22a05ec313..94baba1560 100644 --- a/search/search_tests/latlon_match_test.cpp +++ b/search/search_tests/latlon_match_test.cpp @@ -8,70 +8,70 @@ UNIT_TEST(LatLon_Degree_Match) double lat, lon; TEST(MatchLatLonDegree("0*30\', 1*0\'30\"", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 0.5, ()); - TEST_ALMOST_EQUAL(lon, 1.00833333333333, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 0.5, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 1.00833333333333, ()); TEST(MatchLatLonDegree("50 *, 40 *", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 50.0, ()); - TEST_ALMOST_EQUAL(lon, 40.0, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 50.0, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 40.0, ()); TEST(!MatchLatLonDegree("50* 40*, 30*", lat, lon), ()); TEST(MatchLatLonDegree("(-50°30\'30\" -49°59\'59\"", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, -50.50833333333333, ()); - TEST_ALMOST_EQUAL(lon, -49.99972222222222, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -50.50833333333333, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -49.99972222222222, ()); TEST(!MatchLatLonDegree("50°, 30\"", lat, lon), ()); TEST(!MatchLatLonDegree("50\', -50°", lat, lon), ()); TEST(!MatchLatLonDegree("-90*50\'50\", -50°", lat, lon), ()); TEST(MatchLatLonDegree("(-89*, 360*)", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, -89.0, ()); - TEST_ALMOST_EQUAL(lon, 0.0, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -89.0, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 0.0, ()); TEST(MatchLatLonDegree("-89*15.5\' N; 120*30\'50.5\" e", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, -89.25833333333333, ()); - TEST_ALMOST_EQUAL(lon, 120.51402777777778, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -89.25833333333333, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 120.51402777777778, ()); TEST(MatchLatLonDegree("N55°45′20.99″ E37°37′03.62″", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 55.755830555555556, ()); - TEST_ALMOST_EQUAL(lon, 37.617672222222222, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 55.755830555555556, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 37.617672222222222, ()); TEST(MatchLatLonDegree("55°45’20.9916\"N, 37°37’3.6228\"E hsdfjgkdsjbv", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 55.755831, ()); - TEST_ALMOST_EQUAL(lon, 37.617673, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 55.755831, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 37.617673, ()); TEST(MatchLatLonDegree("55°45′20.9916″S, 37°37′3.6228″W", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, -55.755831, ()); - TEST_ALMOST_EQUAL(lon, -37.617673, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -55.755831, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -37.617673, ()); // We can receive already normalized string, and double quotes become two single quotes TEST(MatchLatLonDegree("55°45′20.9916′′S, 37°37′3.6228′′W", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, -55.755831, ()); - TEST_ALMOST_EQUAL(lon, -37.617673, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -55.755831, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -37.617673, ()); TEST(MatchLatLonDegree("W55°45′20.9916″, S37°37′3.6228″", lat, lon), ()); - TEST_ALMOST_EQUAL(lon, -55.755831, ()); - TEST_ALMOST_EQUAL(lat, -37.617673, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -55.755831, ()); + TEST_ALMOST_EQUAL_ULPS(lat, -37.617673, ()); TEST(MatchLatLonDegree("55°45′20.9916″ W 37°37′3.6228″ N", lat, lon), ()); - TEST_ALMOST_EQUAL(lon, -55.755831, ()); - TEST_ALMOST_EQUAL(lat, 37.617673, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -55.755831, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 37.617673, ()); TEST(!MatchLatLonDegree("55°45′20.9916″W 37°37′3.6228″E", lat, lon), ()); TEST(!MatchLatLonDegree("N55°45′20.9916″ S37°37′3.6228″", lat, lon), ()); TEST(MatchLatLonDegree("54° 25' 0N 1° 53' 46W", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 54.41666666666667, ()); - TEST_ALMOST_EQUAL(lon, -1.89611111111111, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 54.41666666666667, ()); + TEST_ALMOST_EQUAL_ULPS(lon, -1.89611111111111, ()); TEST(MatchLatLonDegree("47.33471°N 8.53112°E", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 47.33471, ()); - TEST_ALMOST_EQUAL(lon, 8.53112, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 47.33471, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 8.53112, ()); TEST(MatchLatLonDegree("N 51* 33.217 E 11* 10.113", lat, lon), ()); - TEST_ALMOST_EQUAL(lat, 51.55361666666667, ()); - TEST_ALMOST_EQUAL(lon, 11.16855, ()); + TEST_ALMOST_EQUAL_ULPS(lat, 51.55361666666667, ()); + TEST_ALMOST_EQUAL_ULPS(lon, 11.16855, ()); TEST(!MatchLatLonDegree("N 51* 33.217 E 11* 60.113", lat, lon), ()); TEST(!MatchLatLonDegree("N 51* -33.217 E 11* 10.113", lat, lon), ()); diff --git a/testing/testing.hpp b/testing/testing.hpp index 5ede65be90..db9c810f45 100644 --- a/testing/testing.hpp +++ b/testing/testing.hpp @@ -53,11 +53,11 @@ namespace my ::my::OnTestFailed(SRC(), ::my::impl::Message("TEST("#X" >= "#Y")", \ ::my::impl::Message(X, Y), \ ::my::impl::Message msg));}} -#define TEST_ALMOST_EQUAL(X, Y, msg) { if (::my::AlmostEqual(X, Y)) {} else { \ - ::my::OnTestFailed(SRC(), ::my::impl::Message("TEST(my::AlmostEqual("#X", "#Y")", \ +#define TEST_ALMOST_EQUAL_ULPS(X, Y, msg) { if (::my::AlmostEqualULPs(X, Y)) {} else { \ + ::my::OnTestFailed(SRC(), ::my::impl::Message("TEST(my::AlmostEqualULPs("#X", "#Y")", \ ::my::impl::Message(X, Y), \ ::my::impl::Message msg));}} -#define TEST_NOT_ALMOST_EQUAL(X, Y, msg) { if (!::my::AlmostEqual(X, Y)) {} else { \ - ::my::OnTestFailed(SRC(), ::my::impl::Message("TEST(!my::AlmostEqual("#X", "#Y")", \ +#define TEST_NOT_ALMOST_EQUAL_ULPS(X, Y, msg) { if (!::my::AlmostEqualULPs(X, Y)) {} else { \ + ::my::OnTestFailed(SRC(), ::my::impl::Message("TEST(!my::AlmostEqualULPs("#X", "#Y")", \ ::my::impl::Message(X, Y), \ ::my::impl::Message msg));}}