| 245 | |
| 246 | template <typename Vertex, typename Edge, typename Weight, typename AStarParams> |
| 247 | RouterResultCode FindPath(AStarParams & params, std::set<NumMwmId> const & mwmIds, |
| 248 | RoutingResult<Vertex, Weight> & routingResult) |
| 249 | { |
| 250 | AStarAlgorithm<Vertex, Edge, Weight> algorithm; |
| 251 | return ConvertTransitResult( |
| 252 | mwmIds, ConvertResult<Vertex, Edge, Weight>(algorithm.FindPathBidirectional(params, routingResult))); |
| 253 | } |
| 254 | |
| 255 | void SetupAlgorithmMode(IndexGraphStarter & starter, bool guidesActive = false) const; |
| 256 | uint32_t ConnectTracksOnGuidesToOsm(std::vector<m2::PointD> const & checkpoints, WorldGraph & graph); |
nothing calls this directly
no test coverage detected