summaryrefslogtreecommitdiffstats
path: root/src/boost/libs/graph/example/reverse_graph.expected
diff options
context:
space:
mode:
Diffstat (limited to 'src/boost/libs/graph/example/reverse_graph.expected')
-rw-r--r--src/boost/libs/graph/example/reverse_graph.expected13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/boost/libs/graph/example/reverse_graph.expected b/src/boost/libs/graph/example/reverse_graph.expected
new file mode 100644
index 000000000..068c8195e
--- /dev/null
+++ b/src/boost/libs/graph/example/reverse_graph.expected
@@ -0,0 +1,13 @@
+original graph:
+0 --> 2
+1 --> 1 3 4
+2 --> 1 3 4
+3 --> 1 4
+4 --> 0 1
+
+reversed graph:
+0 --> 4
+1 --> 1 2 3 4
+2 --> 0
+3 --> 1 2
+4 --> 1 2 3