osrm-backend/include/partitioner/inertial_flow.hpp

18 lines
584 B
C++
Raw Permalink Normal View History

#ifndef OSRM_PARTITIONER_INERTIAL_FLOW_HPP_
#define OSRM_PARTITIONER_INERTIAL_FLOW_HPP_
#include "partitioner/bisection_graph_view.hpp"
#include "partitioner/dinic_max_flow.hpp"
namespace osrm::partitioner
{
DinicMaxFlow::MinCut computeInertialFlowCut(const BisectionGraphView &view,
2017-02-28 19:48:00 -05:00
const std::size_t num_slopes,
const double balance,
const double source_sink_rate);
2022-12-20 12:00:11 -05:00
} // namespace osrm::partitioner
#endif // OSRM_PARTITIONER_INERTIAL_FLOW_HPP_