2014-11-28 09:33:08 -05:00
|
|
|
#ifndef ALTERNATIVE_PATH_ROUTING_HPP
|
|
|
|
#define ALTERNATIVE_PATH_ROUTING_HPP
|
2012-06-15 12:47:27 -04:00
|
|
|
|
2017-07-13 09:05:08 -04:00
|
|
|
#include "engine/datafacade.hpp"
|
2017-02-24 20:24:21 -05:00
|
|
|
#include "engine/internal_route_result.hpp"
|
2017-01-09 15:40:33 -05:00
|
|
|
|
|
|
|
#include "engine/algorithm.hpp"
|
2016-01-02 11:13:44 -05:00
|
|
|
#include "engine/search_engine_data.hpp"
|
2012-06-15 12:47:27 -04:00
|
|
|
|
2017-02-24 21:22:17 -05:00
|
|
|
#include "util/exception.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::engine::routing_algorithms
|
2016-01-05 10:51:13 -05:00
|
|
|
{
|
2017-04-06 08:28:43 -04:00
|
|
|
|
2017-07-13 09:05:08 -04:00
|
|
|
InternalManyRoutesResult alternativePathSearch(SearchEngineData<ch::Algorithm> &search_engine_data,
|
|
|
|
const DataFacade<ch::Algorithm> &facade,
|
2022-08-27 06:36:20 -04:00
|
|
|
const PhantomEndpointCandidates &endpoint_candidates,
|
2017-07-13 09:05:08 -04:00
|
|
|
unsigned number_of_alternatives);
|
|
|
|
|
|
|
|
InternalManyRoutesResult alternativePathSearch(SearchEngineData<mld::Algorithm> &search_engine_data,
|
|
|
|
const DataFacade<mld::Algorithm> &facade,
|
2022-08-27 06:36:20 -04:00
|
|
|
const PhantomEndpointCandidates &endpoint_candidates,
|
2017-07-13 09:05:08 -04:00
|
|
|
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
|
|
|
|
2017-02-24 20:24:21 -05:00
|
|
|
#endif
|