| 222 | } |
| 223 | |
| 224 | double QueryVec::GetFullTokenWeight(size_t i) |
| 225 | { |
| 226 | ASSERT_LESS(i, m_tfs.size(), ()); |
| 227 | return GetWeightImpl(*m_idfs, m_tfs[i], false /* isPrefix */); |
| 228 | } |
| 229 | |
| 230 | double QueryVec::GetPrefixTokenWeight() |
| 231 | { |
nothing calls this directly
no test coverage detected