diff options
Diffstat (limited to 'src/boost/libs/graph/example/scc.dot')
-rw-r--r-- | src/boost/libs/graph/example/scc.dot | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/boost/libs/graph/example/scc.dot b/src/boost/libs/graph/example/scc.dot new file mode 100644 index 000000000..0775898da --- /dev/null +++ b/src/boost/libs/graph/example/scc.dot @@ -0,0 +1,33 @@ + +digraph SCC { + node[shape=circle]; + ratio=1.2 + a + b + c + d + e + f + g + h + i + j + + a -> b + a -> f + a -> h + b -> c + b -> a + c -> d + c -> b + d -> e + e -> d + f -> g + g -> f + g -> d + h -> i + i -> h + i -> j + i -> e + i -> c +} |