| 38 | } |
| 39 | |
| 40 | void UndirectedGraph::GetOutgoingEdgesList(astar::VertexData<Vertex, Weight> const & vertexData, EdgeListT & adj) |
| 41 | { |
| 42 | GetEdgesList(vertexData.m_vertex, true /* isOutgoing */, adj); |
| 43 | } |
| 44 | |
| 45 | double UndirectedGraph::HeuristicCostEstimate(Vertex const & v, Vertex const & w) |
| 46 | { |
no outgoing calls
no test coverage detected