summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/graph/example/dijkstra.expected
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/graph/example/dijkstra.expected')
-rw-r--r--src/boost/libs/graph/example/dijkstra.expected13
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 000000000..a2eb19ee9
--- /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