]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/graph/example/strong_components.expected
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / graph / example / strong_components.expected
1 A directed graph:
2 a --> b f h
3 b --> c a
4 c --> d b
5 d --> e
6 e --> d
7 f --> g
8 g --> f d
9 h --> i
10 i --> h j e c
11 j -->
12
13 Total number of components: 4
14 Vertex a is in component 3
15 Vertex b is in component 3
16 Vertex c is in component 3
17 Vertex d is in component 0
18 Vertex e is in component 0
19 Vertex f is in component 1
20 Vertex g is in component 1
21 Vertex h is in component 3
22 Vertex i is in component 3
23 Vertex j is in component 2