From a502f1873ebd67a364a0e29d0baec034cd84005a Mon Sep 17 00:00:00 2001 From: tatiana-yan Date: Wed, 3 Jun 2020 16:51:59 +0300 Subject: [PATCH] [generator] PlaceProcessor: decrease kIsCapitalCoeff. --- generator/place_processor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generator/place_processor.cpp b/generator/place_processor.cpp index a4a044d9fe..230f1f6cec 100644 --- a/generator/place_processor.cpp +++ b/generator/place_processor.cpp @@ -47,7 +47,7 @@ template bool IsWorsePlace(T const & left, T const & right) { double constexpr kRankCoeff = 1.0; - double constexpr kIsCapitalCoeff = 1.0; + double constexpr kIsCapitalCoeff = 0.1; double constexpr kLangsCountCoeff = 1.0; double constexpr kIsPointCoeff = 0.1; double constexpr kIsNodeCoeff = 0.1;