2017-08-08 06:48:26 -04:00
|
|
|
#ifndef OSRM_SHORTEST_PATH_HPP
|
|
|
|
#define OSRM_SHORTEST_PATH_HPP
|
2012-06-15 12:47:27 -04:00
|
|
|
|
2017-01-09 15:40:33 -05:00
|
|
|
#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"
|
2017-01-09 15:40:33 -05:00
|
|
|
#include "util/typedefs.hpp"
|
2015-11-30 23:28:57 -05:00
|
|
|
|
2016-01-05 10:51:13 -05:00
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace engine
|
|
|
|
{
|
|
|
|
namespace routing_algorithms
|
|
|
|
{
|
|
|
|
|
2017-04-12 02:22:28 -04:00
|
|
|
template <typename Algorithm>
|
2022-08-27 06:36:20 -04:00
|
|
|
InternalRouteResult
|
|
|
|
shortestPathSearch(SearchEngineData<Algorithm> &engine_working_data,
|
|
|
|
const DataFacade<Algorithm> &facade,
|
|
|
|
const std::vector<PhantomNodeCandidates> &waypoint_candidates,
|
|
|
|
const boost::optional<bool> continue_straight_at_waypoint);
|
2017-02-25 00:13:38 -05:00
|
|
|
|
2017-01-05 06:18:45 -05:00
|
|
|
} // namespace routing_algorithms
|
|
|
|
} // namespace engine
|
|
|
|
} // namespace osrm
|
2016-01-05 10:51:13 -05:00
|
|
|
|
2017-08-08 06:48:26 -04:00
|
|
|
#endif /* OSRM_SHORTEST_PATH_HPP */
|