| 33 | } |
| 34 | |
| 35 | bool IsBoarding(bool prevIsFerry, bool nextIsFerry) |
| 36 | { |
| 37 | return !prevIsFerry && nextIsFerry; |
| 38 | } |
| 39 | |
| 40 | IndexGraph::IndexGraph(shared_ptr<Geometry> geometry, shared_ptr<EdgeEstimator> estimator, |
| 41 | RoutingOptions routingOptions, feature::RegionData const * regionData) |