diff --git a/include/boost/graph/uniform_cost_search.hpp b/include/boost/graph/uniform_cost_search.hpp index ff699a38..d8bee160 100644 --- a/include/boost/graph/uniform_cost_search.hpp +++ b/include/boost/graph/uniform_cost_search.hpp @@ -45,6 +45,7 @@ namespace boost { void constraints() { vis.initialize_vertex(u, g); vis.discover_vertex(u, g); + vis.examine_vertex(u, g); vis.examine_edge(e, g); vis.edge_relaxed(e, g); vis.edge_not_relaxed(e, g); @@ -127,6 +128,10 @@ namespace boost { void discover_vertex(Vertex u, Graph& g) { m_vis.discover_vertex(u, g); } + template + void examine_vertex(Vertex u, Graph& g) { + m_vis.examine_vertex(u, g); + } template void examine_edge(Edge e, Graph& g) { m_vis.examine_edge(e, g);