osrm-backend/include/engine/routing_algorithms/shortest_path.hpp

22 lines
686 B
C++
Raw Normal View History

2017-08-08 06:48:26 -04:00
#ifndef OSRM_SHORTEST_PATH_HPP
#define OSRM_SHORTEST_PATH_HPP
#include "engine/algorithm.hpp"
2016-01-02 11:13:44 -05:00
#include "engine/routing_algorithms/routing_base.hpp"
#include "engine/search_engine_data.hpp"
#include "util/typedefs.hpp"
namespace osrm::engine::routing_algorithms
2016-01-05 10:51:13 -05:00
{
template <typename Algorithm>
InternalRouteResult
shortestPathSearch(SearchEngineData<Algorithm> &engine_working_data,
const DataFacade<Algorithm> &facade,
const std::vector<PhantomNodeCandidates> &waypoint_candidates,
const std::optional<bool> continue_straight_at_waypoint);
2017-02-25 00:13:38 -05:00
2022-12-20 12:00:11 -05:00
} // namespace osrm::engine::routing_algorithms
2016-01-05 10:51:13 -05:00
2017-08-08 06:48:26 -04:00
#endif /* OSRM_SHORTEST_PATH_HPP */