osrm-backend/include/contractor/contractor_search.hpp

24 lines
551 B
C++
Raw Permalink Normal View History

#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>
namespace osrm::contractor
{
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
#endif // OSRM_CONTRACTOR_DIJKSTRA_HPP