diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 18:24:20 +0000 |
commit | 483eb2f56657e8e7f419ab1a4fab8dce9ade8609 (patch) | |
tree | e5d88d25d870d5dedacb6bbdbe2a966086a0a5cf /src/boost/libs/graph/example/bfs.expected | |
parent | Initial commit. (diff) | |
download | ceph-upstream.tar.xz ceph-upstream.zip |
Adding upstream version 14.2.21.upstream/14.2.21upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/boost/libs/graph/example/bfs.expected')
-rw-r--r-- | src/boost/libs/graph/example/bfs.expected | 16 |
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 |