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

discovering vertex v now, not u

[SVN r8623]
This commit is contained in:
Jeremy Siek
2001-01-17 04:27:15 +00:00
parent 1e41917003
commit d5efa4eac5

View File

@@ -112,7 +112,7 @@ namespace boost {
Vertex v = target(e, g);
if (get(color, v) == white(c)) {
put(color, v, gray(c));
vis.discover_vertex(u, g);
vis.discover_vertex(v, g);
vis.tree_edge(e, g);
Q.push(v);
} else {