| 148 | } |
| 149 | |
| 150 | void CrossMwmGraph::GetIngoingEdgeList(Segment const & exit, EdgeListT & edges) |
| 151 | { |
| 152 | ASSERT(IsTransition(exit, true /* isEnter */), |
| 153 | ("The segment is not a transition segment. IsTransition(", exit, ", true) returns false.")); |
| 154 | |
| 155 | // Is not supported yet. |
| 156 | /* |
| 157 | if (TransitGraph::IsTransitSegment(enter)) |
| 158 | { |
| 159 | if (TransitCrossMwmSectionExists(enter.GetMwmId())) |
| 160 | m_crossMwmTransitGraph.GetIngoingEdgeList(enter, edges); |
| 161 | return; |
| 162 | } |
| 163 | */ |
| 164 | |
| 165 | if (CrossMwmSectionExists(exit.GetMwmId())) |
| 166 | m_crossMwmIndexGraph.GetIngoingEdgeList(exit, edges); |
| 167 | } |
| 168 | |
| 169 | RouteWeight CrossMwmGraph::GetWeightSure(Segment const & from, Segment const & to) |
| 170 | { |
no test coverage detected