2018-02-01 10:47:43 -05:00
|
|
|
#ifndef OSRM_PARTITIONER_PARTITIONER_HPP_
|
|
|
|
#define OSRM_PARTITIONER_PARTITIONER_HPP_
|
|
|
|
|
|
|
|
#include "partitioner/partitioner_config.hpp"
|
|
|
|
|
2022-12-11 04:10:26 -05:00
|
|
|
namespace osrm::partitioner
|
2018-02-01 10:47:43 -05:00
|
|
|
{
|
|
|
|
|
|
|
|
// tool access to the recursive partitioner
|
|
|
|
class Partitioner
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int Run(const PartitionerConfig &config);
|
|
|
|
};
|
|
|
|
|
2022-12-20 12:00:11 -05:00
|
|
|
} // namespace osrm::partitioner
|
2018-02-01 10:47:43 -05:00
|
|
|
|
|
|
|
#endif // OSRM_PARTITIONER_PARTITIONER_HPP_
|