2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-29 19:42:11 +00:00

fixed infinite loop caused by a typo

[SVN r12098]
This commit is contained in:
Jeremy Siek
2001-12-17 23:07:55 +00:00
parent b496ac4ede
commit 97cab7e93e

View File

@@ -200,7 +200,7 @@ namespace boost {
}
put(distance, s, zero);
dijkstra_shortest_paths(g, s, predecessor, distance, weight,
dijkstra_shortest_paths_no_init(g, s, predecessor, distance, weight,
index_map, compare, combine, inf, zero, vis);
}