diff options
Diffstat (limited to 'src/boost/libs/graph/example/dijkstra.expected')
-rw-r--r-- | src/boost/libs/graph/example/dijkstra.expected | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boost/libs/graph/example/dijkstra.expected b/src/boost/libs/graph/example/dijkstra.expected new file mode 100644 index 00000000..0f73cbdf --- /dev/null +++ b/src/boost/libs/graph/example/dijkstra.expected @@ -0,0 +1,13 @@ +distances from start vertex: +distance(0) = 0 +distance(1) = 6 +distance(2) = 1 +distance(3) = 4 +distance(4) = 5 + +shortest paths tree +0 --> 2 +1 --> +2 --> 3 +3 --> 4 +4 --> 1 |