| 217 | } |
| 218 | |
| 219 | void TransitWorldGraph::AddRealEdges(astar::VertexData<Segment, RouteWeight> const & vertexData, bool isOutgoing, |
| 220 | bool useRoutingOptions, SegmentEdgeListT & edges) |
| 221 | { |
| 222 | auto const & segment = vertexData.m_vertex; |
| 223 | auto & indexGraph = GetIndexGraph(segment.GetMwmId()); |
| 224 | indexGraph.GetEdgeList(vertexData, isOutgoing, useRoutingOptions, edges); |
| 225 | GetTwins(segment, isOutgoing, useRoutingOptions, edges); |
| 226 | } |
| 227 | |
| 228 | TransitGraph & TransitWorldGraph::GetTransitGraph(NumMwmId mwmId) |
| 229 | { |
nothing calls this directly
no test coverage detected