| 7 | namespace routing |
| 8 | { |
| 9 | void WorldGraph::GetEdgeList(Segment const & vertex, bool isOutgoing, bool useRoutingOptions, SegmentEdgeListT & edges) |
| 10 | { |
| 11 | GetEdgeList({vertex, RouteWeight(0.0)}, isOutgoing, useRoutingOptions, false /* useAccessConditional */, edges); |
| 12 | } |
| 13 | |
| 14 | void WorldGraph::GetTwins(Segment const & segment, bool isOutgoing, bool useRoutingOptions, SegmentEdgeListT & edges) |
| 15 | { |