From 8be1db0687eecff5e7d95a04982ff93b09bd76d5 Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Wed, 23 May 2001 18:38:49 +0000 Subject: [PATCH] removed vis.initialize [SVN r10202] --- include/boost/graph/dag_shortest_paths.hpp | 1 - 1 file changed, 1 deletion(-) diff --git a/include/boost/graph/dag_shortest_paths.hpp b/include/boost/graph/dag_shortest_paths.hpp index 56989881..641d3e15 100644 --- a/include/boost/graph/dag_shortest_paths.hpp +++ b/include/boost/graph/dag_shortest_paths.hpp @@ -34,7 +34,6 @@ namespace boost { for (tie(ui, ui_end) = vertices(g); ui != ui_end; ++ui) { put(distance, *ui, inf_gen()); put(pred, *ui, *ui); - vis.initialize_vertex(*ui, g); } put(distance, s, zero());