/srv/osrm/osrm-backend/include/engine/routing_algorithms
NameSizeModeActions
alternative_path.hpp11040644editdlrm
direct_shortest_path.hpp10760644editdlrm
many_to_many.hpp30390644editdlrm
map_matching.hpp12430644editdlrm
routing_base.hpp173120644editdlrm
routing_base_ch.hpp207400644editdlrm
routing_base_mld.hpp273980644editdlrm
shortest_path.hpp6880644editdlrm
shortest_path_impl.hpp348890644editdlrm
tile_turns.hpp12010644editdlrm
Edit: /srv/osrm/osrm-backend/include/engine/routing_algorithms/alternative_path.hpp (1104B)
#ifndef ALTERNATIVE_PATH_ROUTING_HPP #define ALTERNATIVE_PATH_ROUTING_HPP #include "engine/datafacade.hpp" #include "engine/internal_route_result.hpp" #include "engine/algorithm.hpp" #include "engine/search_engine_data.hpp" #include "util/exception.hpp" namespace osrm::engine::routing_algorithms { InternalManyRoutesResult alternativePathSearch(SearchEngineData &search_engine_data, const DataFacade &facade, const PhantomEndpointCandidates &endpoint_candidates, unsigned number_of_alternatives); InternalManyRoutesResult alternativePathSearch(SearchEngineData &search_engine_data, const DataFacade &facade, const PhantomEndpointCandidates &endpoint_candidates, unsigned number_of_alternatives); } // namespace osrm::engine::routing_algorithms #endif