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

28 lines
767 B
C++
Raw Normal View History

#ifndef SHORTEST_PATH_HPP
#define 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"
2016-01-05 10:51:13 -05:00
namespace osrm
{
namespace engine
{
namespace routing_algorithms
{
template <typename Algorithm, typename SearchEngineData>
InternalRouteResult
shortestPathSearch(SearchEngineData &engine_working_data,
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);
} // namespace routing_algorithms
} // namespace engine
} // namespace osrm
2016-01-05 10:51:13 -05:00
#endif /* SHORTEST_PATH_HPP */