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

28 lines
1.1 KiB
C++
Raw Permalink Normal View History

#ifndef ALTERNATIVE_PATH_ROUTING_HPP
#define ALTERNATIVE_PATH_ROUTING_HPP
#include "engine/datafacade.hpp"
#include "engine/internal_route_result.hpp"
#include "engine/algorithm.hpp"
2016-01-02 11:13:44 -05:00
#include "engine/search_engine_data.hpp"
#include "util/exception.hpp"
namespace osrm::engine::routing_algorithms
2016-01-05 10:51:13 -05:00
{
2017-04-06 08:28:43 -04:00
InternalManyRoutesResult alternativePathSearch(SearchEngineData<ch::Algorithm> &search_engine_data,
const DataFacade<ch::Algorithm> &facade,
const PhantomEndpointCandidates &endpoint_candidates,
unsigned number_of_alternatives);
InternalManyRoutesResult alternativePathSearch(SearchEngineData<mld::Algorithm> &search_engine_data,
const DataFacade<mld::Algorithm> &facade,
const PhantomEndpointCandidates &endpoint_candidates,
unsigned number_of_alternatives);
2017-04-06 08:28:43 -04:00
2022-12-20 12:00:11 -05:00
} // namespace osrm::engine::routing_algorithms
2016-01-05 10:51:13 -05:00
#endif