From cfc41552e77cd7bd33ee9c4855f3317fc0d5c6e5 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Wed, 30 Jun 2004 16:18:43 +0000 Subject: [PATCH] removed inf parameter for the no_init version of Dijkstra's [SVN r23289] --- include/boost/graph/dijkstra_shortest_paths.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/boost/graph/dijkstra_shortest_paths.hpp b/include/boost/graph/dijkstra_shortest_paths.hpp index e4700474..41d581c5 100644 --- a/include/boost/graph/dijkstra_shortest_paths.hpp +++ b/include/boost/graph/dijkstra_shortest_paths.hpp @@ -159,14 +159,14 @@ namespace boost { template + class DistZero> inline void dijkstra_shortest_paths_no_init (const VertexListGraph& g, typename graph_traits::vertex_descriptor s, PredecessorMap predecessor, DistanceMap distance, WeightMap weight, IndexMap index_map, - Compare compare, Combine combine, DistInf inf, DistZero zero, + Compare compare, Combine combine, DistZero zero, DijkstraVisitor vis) { typedef indirect_cmp IndirectCmp;