| 14 | struct alignas(kCacheLineSize) Stats |
| 15 | { |
| 16 | void Add(Stats const & s) |
| 17 | { |
| 18 | m_routesHandled += s.m_routesHandled; |
| 19 | m_routesFailed += s.m_routesFailed; |
| 20 | m_noCandidateFound += s.m_noCandidateFound; |
| 21 | m_noShortestPathFound += s.m_noShortestPathFound; |
| 22 | m_notEnoughScore += s.m_notEnoughScore; |
| 23 | m_wrongOffsets += s.m_wrongOffsets; |
| 24 | m_zeroDistToNextPointCount += s.m_zeroDistToNextPointCount; |
| 25 | } |
| 26 | |
| 27 | void Report() const |
| 28 | { |
no outgoing calls