I add edges (green) to graph, that makes hierarchy of nodes. How to add minor edges (red) that not affecting on the hierarchy?
You need {rank = same; }, e.g.
{rank = same; }
digraph G { a -> b a -> c c -> d c -> e a -> f c -> f }
... gives:
... while
digraph G { a -> b a -> c c -> d c -> e a -> f c -> f { rank=same; c f } }