graph icon indicating copy to clipboard operation
graph copied to clipboard

Boost.org graph module

Results 115 graph issues
Sort by recently updated
recently updated
newest added

As in the title. Consider the following code ```cpp #include #include #include #include typedef int v_index; typedef long e_index; typedef boost::adjacency_list< boost::vecS, // OutEdgeList boost::vecS, // VertexList boost::undirectedS, // DirectedS...

I prefer to use CMake as a build system, but the existing CMake files in Boost don't really help. 1. I don't want to treat every library as an active...

is_connected function is documented as ``` // Is the undirected graph connected? // Is the directed graph strongly connected? ``` and achieves this goal by checking if each vertex is...

Why planar_vertex_six_coloring() is useful can be seen in the first of three tests for that algorithm. The existing sequential_vertex_coloring() can be forced to use $k$ colors for any $k$ (k=15...

enhancement

For instance `detail::residual_graph` explicitly applies const to the graph. Consequently graph_traits would have to be defined also for the const graph type, but [the LEDA graph example](https://www.boost.org/doc/libs/1_86_0/libs/graph/doc/leda_conversion.html) does not seem...