21#ifndef __GRAPH_COLORING_H
22#define __GRAPH_COLORING_H
42 std::vector<std::size_t>& colors);
This class provides a common interface to graph coloring libraries.
Definition GraphColoring.h:35
static std::size_t compute_local_vertex_coloring(const Graph &graph, std::vector< std::size_t > &colors)
Compute vertex colors.
Definition GraphColoring.cpp:39
std::vector< graph_set_type > Graph
Vector of unordered Sets.
Definition Graph.h:39