[geocoder] Fix street suffix ignoring in non street tokens

This commit is contained in:
Anatoly Serdtcev 2019-01-14 19:17:43 +03:00 committed by Sergey Yershov
parent c5e9111019
commit a33a7db094

View file

@ -260,10 +260,11 @@ void Geocoder::Go(Context & ctx, Type type) const
vector<Type> allTypes;
for (size_t tokId = 0; tokId < ctx.GetNumTokens(); ++tokId)
{
if (search::IsStreetSynonym(strings::MakeUniString(ctx.GetToken(tokId))))
auto const t = ctx.GetTokenType(tokId);
if (t == Type::Street && search::IsStreetSynonym(strings::MakeUniString(ctx.GetToken(tokId))))
continue;
auto const t = ctx.GetTokenType(tokId);
certainty += GetWeight(t);
if (t != Type::Count)
allTypes.push_back(t);