Compute the strongly-connected components of the graph by building the reverse graph and performing a breadth-first search on it. More...
Static Public Member Functions | |
static void | compute (VGraph &g, ColorMap &cmap, std::vector< std::vector< typename VGraph::vertex_descriptor > > &sccs) |
Compute the strongly-connected components of the graph by building the reverse graph and performing a breadth-first search on it.
VGraph | the graph view |
ColorMap | the map of colors for each vertex |
b | Boolean value indicating whether the graph is bidirectional |