2017-08-20 19:24:05 -04:00
|
|
|
#ifndef OSRM_CONTRACTOR_SEARCH_HPP
|
|
|
|
#define OSRM_CONTRACTOR_SEARCH_HPP
|
|
|
|
|
|
|
|
#include "contractor/contractor_graph.hpp"
|
|
|
|
#include "contractor/contractor_heap.hpp"
|
|
|
|
|
|
|
|
#include "util/typedefs.hpp"
|
|
|
|
|
|
|
|
#include <cstddef>
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::contractor
|
2017-08-20 19:24:05 -04:00
|
|
|
{
|
|
|
|
|
|
|
|
void search(ContractorHeap &heap,
|
|
|
|
const ContractorGraph &graph,
|
|
|
|
const unsigned number_of_targets,
|
|
|
|
const int node_limit,
|
|
|
|
const EdgeWeight weight_limit,
|
|
|
|
const NodeID forbidden_node);
|
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::contractor
|
2017-08-20 19:24:05 -04:00
|
|
|
|
|
|
|
#endif // OSRM_CONTRACTOR_DIJKSTRA_HPP
|