Select Git revision
Partitioner.hpp
-
Stéphane Del Pino authored
- This is a first step to parallel computations - Lots of clean-up is required in mesh reading/construction
Stéphane Del Pino authored- This is a first step to parallel computations - Lots of clean-up is required in mesh reading/construction
Partitioner.hpp 282 B
#ifndef PARTITIONER_HPP
#define PARTITIONER_HPP
#include <CSRGraph.hpp>
class Partitioner
{
public:
Partitioner() = default;
Partitioner(const Partitioner&) = default;
~Partitioner() = default;
Array<int> partition(const CSRGraph& graph);
};
#endif // PARTITIONER_HPP