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

work on connected components

[SVN r9328]
This commit is contained in:
Jeremy Siek
2001-02-25 21:00:13 +00:00
parent 81b9c05023
commit 18620374e9
6 changed files with 49 additions and 80 deletions

View File

@@ -29,7 +29,7 @@
#include <utility>
#include <boost/graph/adjacency_list.hpp>
#include <boost/pending/disjoint_sets.hpp>
#include <boost/graph/connected_components.hpp>
#include <boost/graph/dynamic_components.hpp>
/*
@@ -81,7 +81,7 @@ int main(int , char* [])
disjoint_sets<Rank, Parent> ds(&rank[0], &parent[0]);
initialize_dynamic_components(G, ds);
dynamic_connected_components(G, ds);
dynamic_components(G, ds);
graph_traits<Graph>::edge_descriptor e;
bool flag;