2014-11-28 09:33:08 -05:00
|
|
|
#ifndef SHORTEST_PATH_HPP
|
|
|
|
#define 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-11 15:22:07 -04:00
|
|
|
template <typename Algorithm, typename SearchEngineData>
|
2017-02-24 20:24:21 -05:00
|
|
|
InternalRouteResult
|
2017-04-11 15:22:07 -04:00
|
|
|
shortestPathSearch(SearchEngineData &engine_working_data,
|
2017-04-03 13:15:58 -04:00
|
|
|
const datafacade::ContiguousInternalMemoryDataFacade<Algorithm> &facade,
|
2017-02-25 00:13:38 -05:00
|
|
|
const std::vector<PhantomNodes> &phantom_nodes_vector,
|
|
|
|
const boost::optional<bool> continue_straight_at_waypoint);
|
|
|
|
|
2017-01-05 06:18:45 -05:00
|
|
|
} // namespace routing_algorithms
|
|
|
|
} // namespace engine
|
|
|
|
} // namespace osrm
|
2016-01-05 10:51:13 -05:00
|
|
|
|
2014-11-28 09:33:08 -05:00
|
|
|
#endif /* SHORTEST_PATH_HPP */
|