Why is graphviz drawing C to the right of B?

Posted by dmd on Stack Overflow See other posts from Stack Overflow or by dmd
Published on 2010-03-14T17:29:17Z Indexed on 2010/03/14 17:35 UTC
Read the original article Hit count: 252

Filed under:
|
|

Why is graphviz drawing C to the right of B? I want it to look like

A
B E
C

instead.

digraph  {
    compound=true
    subgraph cluster_1 { a -> b }
    b -> c
    {rank=same b -> e  }
}

alt text

© Stack Overflow or respective owner

Related posts about graphs

Related posts about graphviz