| 199 | } |
| 200 | |
| 201 | bool Extrapolator::DoesExtrapolationWork() const |
| 202 | { |
| 203 | if (!m_isEnabled || m_consecutiveRuns == kExtrapolationCounterUndefined) |
| 204 | return false; |
| 205 | |
| 206 | return AreCoordsGoodForExtrapolation(m_beforeLastGpsInfo, m_lastGpsInfo); |
| 207 | } |
| 208 | } // namespace extrapolation |
nothing calls this directly
no test coverage detected