2
0
mirror of https://github.com/boostorg/graph.git synced 2026-01-19 04:12:11 +00:00

working version

[SVN r9332]
This commit is contained in:
Jeremy Siek
2001-02-25 22:06:23 +00:00
parent 0f9043b2ee
commit fc8e4d8ffa

View File

@@ -2,14 +2,32 @@
digraph SCC {
node[shape=circle];
ratio=1.2
a b c d e f g h i j
a -> { b f h }
b -> { c a }
c -> { d b }
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 d }
g -> f
g -> d
h -> i
i -> { h j e c }
i -> h
i -> j
i -> e
i -> c
}