diff --git a/search/ranking_info.cpp b/search/ranking_info.cpp index f227ed6c78..fca9d529e0 100644 --- a/search/ranking_info.cpp +++ b/search/ranking_info.cpp @@ -20,7 +20,7 @@ namespace { // See search/search_quality/scoring_model.py for details. In short, // these coeffs correspond to coeffs in a linear model. -double constexpr kHasName = 0.5; +double constexpr kCategoriesHasName = 0.25; double constexpr kCategoriesPopularity = 0.05; double constexpr kCategoriesDistanceToPivot = -0.6874177; double constexpr kCategoriesRank = 1.0000000; @@ -115,7 +115,7 @@ static_assert(std::size(kStreetType) == base::Underlying(StreetType::Count)); static_assert(kType[Model::TYPE_BUILDING] > kStreetType[StreetType::Motorway]); // Coeffs sanity checks. -static_assert(kHasName >= 0, ""); +static_assert(kCategoriesHasName >= 0 && kCategoriesHasName < kViewportDiffThreshold); static_assert(kCategoriesPopularity >= 0, ""); static_assert(kDistanceToPivot <= 0, ""); static_assert(kRank >= 0, ""); @@ -417,7 +417,7 @@ double RankingInfo::GetLinearModelRank(bool viewportMode /* = false */) const if (m_falseCats) result += kCategoriesFalseCats; if (m_hasName) - result += kHasName; + result += kCategoriesHasName; } // Trying to fix https://github.com/organicmaps/organicmaps/issues/5251. diff --git a/search/search_quality/search_quality_tests/real_mwm_tests.cpp b/search/search_quality/search_quality_tests/real_mwm_tests.cpp index c236416615..6a5b5e507c 100644 --- a/search/search_quality/search_quality_tests/real_mwm_tests.cpp +++ b/search/search_quality/search_quality_tests/real_mwm_tests.cpp @@ -1268,6 +1268,33 @@ UNIT_CLASS_TEST(MwmTestsFixture, PostOffice_Viewport) } } +UNIT_CLASS_TEST(MwmTestsFixture, Family_Viewport) +{ + using namespace mercator; + auto const & cl = classif(); + + // Buenos Aires + ms::LatLon const center(-34.588943, -58.3988512); + SetViewportAndLoadMaps(center); + + auto params = GetDefaultSearchParams("Family holiday "); + params.m_mode = search::Mode::Viewport; + params.m_categorialRequest = true; + params.m_maxNumResults = search::SearchParams::kDefaultNumResultsInViewport; + + { + params.m_viewport = { LonToX(-58.4015885), LatToY(-34.5901233), LonToX(-58.396118), LatToY(-34.5876888) }; + + auto request = MakeRequest(params); + auto const & results = request->Results(); + Range allRange(results, true /* all */); + + TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"shop", "baby_goods"})), 1, ()); + TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"shop", "toys"})), 1, ()); + TEST_EQUAL(CountClassifType(allRange, cl.GetTypeByPath({"leisure", "playground"})), 2, ()); + } +} + UNIT_CLASS_TEST(MwmTestsFixture, NotAllTokens) { auto const & cl = classif();