Update contrib.
1 //=======================================================================
2 // Copyright 2001 University of Notre Dame.
3 // Author: Jeremy G. Siek
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 //=======================================================================
11 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
24 0(0,1) 1(1,2) 2(1,3) 6(2,5) 3(4,1) 4(4,5) 5(5,3)
39 #include <boost/config.hpp>
41 #include <boost/graph/subgraph.hpp>
42 #include <boost/graph/adjacency_list.hpp>
43 #include <boost/graph/graph_utility.hpp>
46 #include "std_log_result.h"
47 #define LOG_FILENAME_LINE __FILE__, __LINE__
54 using namespace boost;
55 typedef adjacency_list_traits<vecS, vecS, directedS> Traits;
56 typedef subgraph< adjacency_list<vecS, vecS, directedS,
57 property<vertex_color_t, int>, property<edge_index_t, int> > > Graph;
61 enum { A, B, C, D, E, F}; // for conveniently refering to vertices in G0
63 Graph& G1 = G0.create_subgraph();
64 Graph& G2 = G0.create_subgraph();
65 enum { A1, B1, C1 }; // for conveniently refering to vertices in G1
66 enum { A2, B2 }; // for conveniently refering to vertices in G2
68 add_vertex(C, G1); // global vertex C becomes local A1 for G1
69 add_vertex(E, G1); // global vertex E becomes local B1 for G1
70 add_vertex(F, G1); // global vertex F becomes local C1 for G1
72 add_vertex(A, G2); // global vertex A becomes local A1 for G2
73 add_vertex(B, G2); // global vertex B becomes local B1 for G2
82 add_edge(A1, C1, G1); // (A1,C1) is subgraph G1 local indices for (C,F).
84 std::cout << "G0:" << std::endl;
85 print_graph(G0, get(vertex_index, G0));
86 print_edges2(G0, get(vertex_index, G0), get(edge_index, G0));
87 std::cout << std::endl;
89 Graph::children_iterator ci, ci_end;
91 for (tie(ci, ci_end) = G0.children(); ci != ci_end; ++ci) {
92 std::cout << "G" << num++ << ":" << std::endl;
93 print_graph(*ci, get(vertex_index, *ci));
94 print_edges2(*ci, get(vertex_index, *ci), get(edge_index, *ci));
95 std::cout << std::endl;
99 std_log(LOG_FILENAME_LINE,"[End Test Case ]");
100 testResultXml("subgraph");