MCPcopy Create free account
hub / github.com/comaps/comaps / Add

Method Add

tools/openlr/stats.hpp:16–25  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14struct 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 {

Callers 2

BoundingBoxFunction · 0.45
WithRoadFunction · 0.45

Calls

no outgoing calls

Tested by 1

WithRoadFunction · 0.36