summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/graph/example/bfs.expected
blob: c58f0fb319e4b7ebe7496e6e297d1c236c9213c4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
0 --> 2 
1 --> 1 3 4 
2 --> 1 3 4 
3 --> 1 4 
4 --> 0 1 
0 --> 2 
1 --> 1 3 4 
2 --> 1 3 4 
3 --> 1 4 
4 --> 0 1 
distances: 0 2 1 2 2 
parent[0] = 0
parent[1] = 2
parent[2] = 0
parent[3] = 2
parent[4] = 2