2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-31 08:12:14 +00:00

Fix depth_first_search root_vertex for Digraph

[SVN r29476]
This commit is contained in:
Douglas Gregor
2005-06-08 14:05:08 +00:00
parent b9a10e2861
commit 0e295d01c3

View File

@@ -138,7 +138,7 @@ void export_depth_first_search()
def("depth_first_search", &depth_first_search<Digraph>,
(arg("graph"),
arg("root_vertex") = graph_traits<Graph>::null_vertex(),
arg("root_vertex") = graph_traits<Digraph>::null_vertex(),
arg("visitor") = dfs_visitor<Digraph>::default_arg(),
arg("color_map") =
(vector_property_map<default_color_type, Digraph::VertexIndexMap>*)0));