diff --git a/indexer/indexer_tests/centers_table_test.cpp b/indexer/indexer_tests/centers_table_test.cpp index 1af9d10edf..197809a8fa 100644 --- a/indexer/indexer_tests/centers_table_test.cpp +++ b/indexer/indexer_tests/centers_table_test.cpp @@ -65,7 +65,7 @@ UNIT_CLASS_TEST(CentersTableTest, Smoke) m2::PointD expected = feature::GetCenter(ft); - TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, expected), 1, (id)); + TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, expected), 1.0, (id)); }); } } @@ -103,7 +103,7 @@ UNIT_CLASS_TEST(CentersTableTest, SmokeV0) m2::PointD expected = feature::GetCenter(ft); - TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, expected), 1, (id)); + TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, expected), 1.0, (id)); }); } } @@ -141,7 +141,7 @@ UNIT_CLASS_TEST(CentersTableTest, Subset) if (j != features.size() && i == features[j].first) { TEST(table->Get(i, actual), ()); - TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, features[j].second), 1, ()); + TEST_LESS_OR_EQUAL(MercatorBounds::DistanceOnEarth(actual, features[j].second), 1.0, ()); } else { diff --git a/platform/mwm_traits.cpp b/platform/mwm_traits.cpp index 4cc5ac3e23..537a5c8d39 100644 --- a/platform/mwm_traits.cpp +++ b/platform/mwm_traits.cpp @@ -79,4 +79,14 @@ std::string DebugPrint(MwmTraits::HouseToStreetTableFormat format) } UNREACHABLE(); } + +std::string DebugPrint(MwmTraits::CentersTableFormat format) +{ + switch (format) + { + case MwmTraits::CentersTableFormat::PlainEliasFanoMap: return "PlainEliasFanoMap"; + case MwmTraits::CentersTableFormat::EliasFanoMapWithHeader: return "EliasFanoMapWithHeader"; + } + UNREACHABLE(); +} } // namespace version diff --git a/platform/mwm_traits.hpp b/platform/mwm_traits.hpp index 1f3027ee56..ca627e08a6 100644 --- a/platform/mwm_traits.hpp +++ b/platform/mwm_traits.hpp @@ -43,10 +43,10 @@ public: enum class CentersTableFormat { - // Centers table encoded without any header. Coding params from mwm header used. + // Centers table encoded without any header. Coding params from mwm header are used. PlainEliasFanoMap, - // Centers table has it's own header with version and coding params. + // Centers table has its own header with version and coding params. EliasFanoMapWithHeader, }; @@ -77,4 +77,5 @@ private: std::string DebugPrint(MwmTraits::SearchIndexFormat format); std::string DebugPrint(MwmTraits::HouseToStreetTableFormat format); +std::string DebugPrint(MwmTraits::CentersTableFormat format); } // namespace version diff --git a/search/postcode_points.cpp b/search/postcode_points.cpp index 7df573ed76..83407be1c4 100644 --- a/search/postcode_points.cpp +++ b/search/postcode_points.cpp @@ -44,8 +44,8 @@ PostcodePoints::PostcodePoints(MwmValue const & value) version::MwmTraits traits(value.GetMwmVersion()); auto const format = traits.GetCentersTableFormat(); - CHECK(format == version::MwmTraits::CentersTableFormat::EliasFanoMapWithHeader, - ("Unexpected format.")); + CHECK_EQUAL(format, version::MwmTraits::CentersTableFormat::EliasFanoMapWithHeader, + ("Unexpected format.")); m_pointsSubReader = reader.GetPtr()->CreateSubReader(m_header.m_pointsOffset, m_header.m_pointsSize);