//======================================================================= // Copyright 2001 University of Notre Dame. // Author: Jeremy G. Siek // // This file is part of the Boost Graph Library // // You should have received a copy of the License Agreement for the // Boost Graph Library along with the software; see the file LICENSE. // If not, contact Office of Research, University of Notre Dame, Notre // Dame, IN 46556. // // Permission to modify the code and to distribute modified code is // granted, provided the text of this NOTICE is retained, a notice that // the code was modified is included with the above COPYRIGHT NOTICE and // with the COPYRIGHT NOTICE in the LICENSE file, and that the LICENSE // file is distributed with the modified code. // // LICENSOR MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. // By way of example, but not limitation, Licensor MAKES NO // REPRESENTATIONS OR WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY // PARTICULAR PURPOSE OR THAT THE USE OF THE LICENSED SOFTWARE COMPONENTS // OR DOCUMENTATION WILL NOT INFRINGE ANY PATENTS, COPYRIGHTS, TRADEMARKS // OR OTHER RIGHTS. //======================================================================= #include #include #include #include int main(int,char*[]) { using namespace boost; typedef adjacency_list_traits Traits; typedef subgraph< adjacency_list > > Graph; const int N = 6; Graph G0(N); enum { A, B, C, D, E, F}; // for conveniently refering to vertices in G0 Graph G1(G0), G2(G0); enum { A1, B1, C2 }; // for conveniently refering to vertices in G1 enum { A2, B2 }; // for conveniently refering to vertices in G2 add_vertex(C, G1); // global vertex C becomes local A1 for G1 add_vertex(E, G1); // global vertex E becomes local B1 for G1 add_vertex(F, G1); // global vertex F becomes local C1 for G1 add_vertex(A, G2); // global vertex A becomes local A1 for G1 add_vertex(B, G2); // global vertex B becomes local B1 for G1 add_edge(A, B, G0); add_edge(B, C, G0); add_edge(B, D, G0); add_edge(E, B, G0); add_edge(E, F, G0); add_edge(F, D, G0); add_edge(A1, C1, G1); // (A1,C1) is subgraph G1 local indices for (C,F). std::cout << "G0:" << std::endl; print_graph(G0, get(vertex_index, G0)); print_edges2(G0, get(vertex_index, G0), get(edge_index, G0)); std::cout << "G1:" << std::endl; print_graph(G1, get(vertex_index, G1)); print_edges2(G1, get(vertex_index, G1), get(edge_index, G1)); std::cout << "G2:" << std::endl; print_graph(G2, get(vertex_index, G2)); print_edges2(G2, get(vertex_index, G2), get(edge_index, G2)); return 0; }