static
| 185 | |
| 186 | // static |
| 187 | void StreetsMatcher::FindStreets(BaseContext const & ctx, CBV const & candidates, FeaturesFilter const & filter, |
| 188 | QueryParams const & params, vector<Prediction> & predictions) |
| 189 | { |
| 190 | for (size_t startToken = 0; startToken < ctx.NumTokens(); ++startToken) |
| 191 | { |
| 192 | if (ctx.IsTokenUsed(startToken)) |
| 193 | continue; |
| 194 | |
| 195 | ::search::FindStreets(ctx, candidates, filter, params, startToken, false /* withMisprints */, predictions); |
| 196 | ::search::FindStreets(ctx, candidates, filter, params, startToken, true /* withMisprints */, predictions); |
| 197 | } |
| 198 | } |
| 199 | } // namespace search |
nothing calls this directly
no test coverage detected