• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 //=======================================================================
2 // Copyright 2001 University of Notre Dame.
3 // Author: Jeremy G. Siek
4 //
5 // Distributed under the Boost Software License, Version 1.0. (See
6 // accompanying file LICENSE_1_0.txt or copy at
7 // http://www.boost.org/LICENSE_1_0.txt)
8 //=======================================================================
9 
10 /*
11   Sample output:
12 
13   G0:
14   0 --> 1
15   1 --> 2 3
16   2 --> 5
17   3 -->
18   4 --> 1 5
19   5 --> 3
20   0(0,1) 1(1,2) 2(1,3) 6(2,5) 3(4,1) 4(4,5) 5(5,3)
21 
22   G1:
23   2 --> 5
24   4 --> 5
25   5 -->
26   6(2,5) 4(4,5)
27 
28   G2:
29   0 --> 1
30   1 -->
31   0(0,1)
32 
33  */
34 
35 #include <boost/config.hpp>
36 #include <iostream>
37 #include <boost/graph/subgraph.hpp>
38 #include <boost/graph/adjacency_list.hpp>
39 #include <boost/graph/graph_utility.hpp>
40 
main(int,char * [])41 int main(int, char*[])
42 {
43     using namespace boost;
44     typedef subgraph< adjacency_list< vecS, vecS, directedS,
45         property< vertex_color_t, int >, property< edge_index_t, int > > >
46         Graph;
47 
48     const int N = 6;
49     Graph G0(N);
50     enum
51     {
52         A,
53         B,
54         C,
55         D,
56         E,
57         F
58     }; // for conveniently refering to vertices in G0
59 
60     Graph& G1 = G0.create_subgraph();
61     Graph& G2 = G0.create_subgraph();
62     enum
63     {
64         A1,
65         B1,
66         C1
67     }; // for conveniently refering to vertices in G1
68     enum
69     {
70         A2,
71         B2
72     }; // for conveniently refering to vertices in G2
73 
74     add_vertex(C, G1); // global vertex C becomes local A1 for G1
75     add_vertex(E, G1); // global vertex E becomes local B1 for G1
76     add_vertex(F, G1); // global vertex F becomes local C1 for G1
77 
78     add_vertex(A, G2); // global vertex A becomes local A1 for G2
79     add_vertex(B, G2); // global vertex B becomes local B1 for G2
80 
81     add_edge(A, B, G0);
82     add_edge(B, C, G0);
83     add_edge(B, D, G0);
84     add_edge(E, B, G0);
85     add_edge(E, F, G0);
86     add_edge(F, D, G0);
87 
88     add_edge(A1, C1, G1); // (A1,C1) is subgraph G1 local indices for (C,F).
89 
90     std::cout << "G0:" << std::endl;
91     print_graph(G0, get(vertex_index, G0));
92     print_edges2(G0, get(vertex_index, G0), get(edge_index, G0));
93     std::cout << std::endl;
94 
95     Graph::children_iterator ci, ci_end;
96     int num = 1;
97     for (boost::tie(ci, ci_end) = G0.children(); ci != ci_end; ++ci)
98     {
99         std::cout << "G" << num++ << ":" << std::endl;
100         print_graph(*ci, get(vertex_index, *ci));
101         print_edges2(*ci, get(vertex_index, *ci), get(edge_index, *ci));
102         std::cout << std::endl;
103     }
104 
105     return 0;
106 }
107