Skip to content

Instantly share code, notes, and snippets.

@theirix
Created February 22, 2016 15:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save theirix/607fdf0268ce1c89b114 to your computer and use it in GitHub Desktop.
Save theirix/607fdf0268ce1c89b114 to your computer and use it in GitHub Desktop.
digraph test {
compound = true;
remincross = true;
subgraph cluster_g{
"node_g" [shape=point style=invis];
G;
};
subgraph cluster_h{
"node_h" [shape=point style=invis];
H;
};
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
"node_h" -> "node_g" [lhead=cluster_h,ltail=cluster_g];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment