dot-bug-c1.dot 247 B

123456789101112131415
  1. /* bug: both node "aa" and "4" are inside cluster1 and "aa" should be outside cluster */
  2. digraph "a"
  3. {
  4. aa;
  5. bb;
  6. subgraph cluster1
  7. {
  8. 4;
  9. 4->aa;
  10. }
  11. // node aa is relocated to cluster1
  12. // node bb is not relocated and in root graph
  13. aa->bb;
  14. }