| 138 | } |
| 139 | |
| 140 | RoutingOptions IndexGraphStarter::GetRoutingOptions(Segment const & segment) const |
| 141 | { |
| 142 | if (segment.IsRealSegment()) |
| 143 | return m_graph.GetRoutingOptions(segment); |
| 144 | |
| 145 | Segment real; |
| 146 | if (!m_fake.FindReal(segment, real)) |
| 147 | return {}; |
| 148 | |
| 149 | return m_graph.GetRoutingOptions(real); |
| 150 | } |
| 151 | |
| 152 | set<NumMwmId> IndexGraphStarter::GetMwms() const |
| 153 | { |
nothing calls this directly
no test coverage detected