2018-02-01 10:47:43 -05:00
|
|
|
#ifndef OSRM_PARTITIONER_INERTIAL_FLOW_HPP_
|
|
|
|
#define OSRM_PARTITIONER_INERTIAL_FLOW_HPP_
|
2017-01-23 05:50:03 -05:00
|
|
|
|
2018-02-01 10:47:43 -05:00
|
|
|
#include "partitioner/bisection_graph_view.hpp"
|
|
|
|
#include "partitioner/dinic_max_flow.hpp"
|
2017-01-25 04:42:13 -05:00
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::partitioner
|
2017-01-23 05:50:03 -05:00
|
|
|
{
|
|
|
|
|
2017-08-22 15:52:42 -04:00
|
|
|
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);
|
2017-01-23 05:50:03 -05:00
|
|
|
|
|
|
|
} // namespace osrm
|
|
|
|
|
2018-02-01 10:47:43 -05:00
|
|
|
#endif // OSRM_PARTITIONER_INERTIAL_FLOW_HPP_
|