digraph G {
graph [style=invis];
bla;
subgraph cluster_X {
ratio=compress;
subgraph cluster0 {
graph [style=invis];
a -> b -> {c0 c1};
{rank=sink max_of_cluster0 [color=transparent,shape=point]};
}
subgraph cluster1 {
graph [style=invis];
x -> y -> {z0 z1};
{rank=source min_of_cluster1 [color=transparent,shape=point]};
}
graph [compound=true];
max_of_cluster0 -> min_of_cluster1
[ltail=cluster0, lhead=cluster1, style=invis, weight=0];
}
}
Comments: