summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/graph/example/bfs.expected
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/graph/example/bfs.expected')
-rw-r--r--src/boost/libs/graph/example/bfs.expected16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/boost/libs/graph/example/bfs.expected b/src/boost/libs/graph/example/bfs.expected
new file mode 100644
index 00000000..c58f0fb3
--- /dev/null
+++ b/src/boost/libs/graph/example/bfs.expected
@@ -0,0 +1,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