2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-31 08:12:14 +00:00

BFS added examine_vertex

[SVN r8635]
This commit is contained in:
Jeremy Siek
2001-01-18 04:06:40 +00:00
parent f85a60382b
commit 19e37ef272

View File

@@ -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 <class Vertex, class Graph>
void examine_vertex(Vertex u, Graph& g) {
m_vis.examine_vertex(u, g);
}
template <class Edge, class Graph>
void examine_edge(Edge e, Graph& g) {
m_vis.examine_edge(e, g);