| 143 | } |
| 144 | |
| 145 | std::string DebugPrint(PreRankerResult const & r) |
| 146 | { |
| 147 | ostringstream os; |
| 148 | os << "PreRankerResult " |
| 149 | << "{ FID: " << r.GetId().m_index // index is enough here for debug purpose |
| 150 | << "; m_matchedTokensNumber: " << r.m_matchedTokensNumber << "; m_isRelaxed: " << r.m_isRelaxed << "; " |
| 151 | << DebugPrint(r.m_info) << " }"; |
| 152 | return os.str(); |
| 153 | } |
| 154 | |
| 155 | // RankerResult ------------------------------------------------------------------------------------ |
| 156 | RankerResult::RankerResult(FeatureType & ft, m2::PointD const & center, string displayName, string const & fileName) |
nothing calls this directly
no test coverage detected