| 102 | { |
| 103 | public: |
| 104 | explicit RoadGraph(RoadGraphIFace const & roadGraph) |
| 105 | : m_roadGraph(roadGraph) |
| 106 | , m_maxSpeedMPS(measurement_utils::KmphToMps(roadGraph.GetMaxSpeedKMpH())) |
| 107 | {} |
| 108 | |
| 109 | void GetOutgoingEdgesList(astar::VertexData<Vertex, Weight> const & vertexData, EdgeListT & adj) override |
| 110 | { |
nothing calls this directly
no test coverage detected