From fc8e4d8ffaa2fe35e3128345bc30e1940d87ceac Mon Sep 17 00:00:00 2001 From: Jeremy Siek Date: Sun, 25 Feb 2001 22:06:23 +0000 Subject: [PATCH] working version [SVN r9332] --- example/scc.dot | 30 ++++++++++++++++++++++++------ 1 file changed, 24 insertions(+), 6 deletions(-) diff --git a/example/scc.dot b/example/scc.dot index bb00f5b3..eb55f5d6 100644 --- a/example/scc.dot +++ b/example/scc.dot @@ -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 }