mirror of
https://github.com/boostorg/graph.git
synced 2026-01-19 16:22:14 +00:00
removed examine_edge()
[SVN r8613]
This commit is contained in:
@@ -69,10 +69,6 @@ public:
|
||||
diameter_and_girth_visitor(std::size_t& k_, std::size_t& girth_)
|
||||
: k(k_), girth(girth_) { }
|
||||
|
||||
void examine_edge(edge_descriptor e, Graph* g) {
|
||||
assert(source(e, g) != target(e, g));
|
||||
}
|
||||
|
||||
void tree_edge(edge_descriptor e, Graph* g) {
|
||||
vertex_descriptor u = source(e, g), v = target(e, g);
|
||||
k = distance[u] + 1;
|
||||
|
||||
Reference in New Issue
Block a user