2
0
mirror of https://github.com/boostorg/graph.git synced 2026-02-02 21:02:15 +00:00

Merged r67014 from trunk

[SVN r67015]
This commit is contained in:
Jeremiah Willcock
2010-12-04 20:51:15 +00:00
parent c3aad6b27e
commit 0ec513eab1

View File

@@ -74,7 +74,8 @@ namespace boost {
assert(pq.size() >= 2);
vertex_descriptor s, t;
vertex_descriptor s = boost::graph_traits<UndirectedGraph>::null_vertex();
vertex_descriptor t = boost::graph_traits<UndirectedGraph>::null_vertex();
weight_type w;
while (!pq.empty()) { // while PQ \neq {} do
const vertex_descriptor u = pq.top(); // u = extractmax(PQ)