#ifndef OSRM_PARTITIONER_BISECTION_TO_PARTITION_HPP #define OSRM_PARTITIONER_BISECTION_TO_PARTITION_HPP #include "partitioner/multi_level_partition.hpp" #include "partitioner/recursive_bisection.hpp" #include namespace osrm { namespace partitioner { using Partition = std::vector; // Converts a representation of the bisection to cell ids over multiple level std::tuple, std::vector> bisectionToPartition(const std::vector &node_to_bisection_id, const std::vector &max_cell_sizes); } } #endif