*Shameless plug* use my graphviz package! OK, relevant answer:
minh thu <[email protected]> writes: > I'm wondering how to make edges. I was expecting to generate something like > > 1 -> {2 ; 3} > > > but get in fact > > 1 > -> 2 -> 3 > > I used the (pseudo) statements > > [NodeStatement $ NodeID 1, EdgeStatement [NodeId 2, NodeId 3]] So you're wanting an edge from 1 to 2 and from 1 to 3, but getting from 1 to 2 and from 2 to 3 instead? -- Ivan Lazar Miljenovic [email protected] IvanMiljenovic.wordpress.com _______________________________________________ Haskell-Cafe mailing list [email protected] http://www.haskell.org/mailman/listinfo/haskell-cafe
