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"
|
|
|
|
|
2016-01-05 10:51:13 -05:00
|
|
|
namespace osrm
|
|
|
|
{
|
|
|
|
namespace engine
|
|
|
|
{
|
|
|
|
namespace routing_algorithms
|
|
|
|
{
|
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,
|
|
|
|
const PhantomNodes &phantom_node_pair,
|
|
|
|
unsigned number_of_alternatives);
|
|
|
|
|
|
|
|
InternalManyRoutesResult alternativePathSearch(SearchEngineData<mld::Algorithm> &search_engine_data,
|
|
|
|
const DataFacade<mld::Algorithm> &facade,
|
|
|
|
const PhantomNodes &phantom_node_pair,
|
|
|
|
unsigned number_of_alternatives);
|
2017-04-06 08:28:43 -04:00
|
|
|
|
2017-01-05 06:18:45 -05:00
|
|
|
} // namespace routing_algorithms
|
|
|
|
} // namespace engine
|
|
|
|
} // namespace osrm
|
2016-01-05 10:51:13 -05:00
|
|
|
|
2017-02-24 20:24:21 -05:00
|
|
|
#endif
|