From 97cab7e93ea91fda1bd077fbb89c128d10a93e3c Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Mon, 17 Dec 2001 23:07:55 +0000 Subject: [PATCH] fixed infinite loop caused by a typo [SVN r12098] --- include/boost/graph/dijkstra_shortest_paths.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/boost/graph/dijkstra_shortest_paths.hpp b/include/boost/graph/dijkstra_shortest_paths.hpp index 73cde3ce..de96b537 100644 --- a/include/boost/graph/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/dijkstra_shortest_paths.hpp @@ -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); }