tmp.gv 1.6 KB

12345678910111213141516171819202122232425262728293031
  1. digraph G {
  2. graph [rankdir=LR, clusterrank="local"];
  3. subgraph cluster_G {
  4. graph [style="filled,rounded", fillcolor="#80808018", label=""];
  5. die [label="die", style="filled", fillcolor="#ffffffb2", fontcolor="#000000", group="0"];
  6. live [label="live", style="filled", fillcolor="#ffffffb2", fontcolor="#000000", group="1"];
  7. subgraph cluster_die {
  8. graph [style="filled,rounded", fillcolor="#80808018", label="die"];
  9. die__play [label="play", style="filled", fillcolor="#feccccb2", fontcolor="#000000", group="0"];
  10. }
  11. subgraph cluster_live {
  12. graph [style="filled,rounded", fillcolor="#80808018", label="live"];
  13. live__eat [label="eat", style="filled", fillcolor="#ccfeccb2", fontcolor="#000000", group="1"];
  14. live__getup [label="getup", style="filled", fillcolor="#ccfeccb2", fontcolor="#000000", group="1"];
  15. live__test [label="test", style="filled", fillcolor="#ccfeccb2", fontcolor="#000000", group="1"];
  16. }
  17. }
  18. die -> die__play [style="dashed", color="#838b8b"];
  19. live -> live__test [style="dashed", color="#838b8b"];
  20. live -> live__eat [style="dashed", color="#838b8b"];
  21. live -> live__getup [style="dashed", color="#838b8b"];
  22. die -> die__play [style="solid", color="#000000"];
  23. die -> live__getup [style="solid", color="#000000"];
  24. die__play -> live__getup [style="solid", color="#000000"];
  25. live__eat -> live__test [style="solid", color="#000000"];
  26. live__getup -> live__eat [style="solid", color="#000000"];
  27. live -> live__getup [style="solid", color="#000000"];
  28. }