Guest User

Untitled

a guest
Jun 22nd, 2018
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. digraph g {
  2. goal[label="My goal", peripheries=2]
  3.  
  4. n1[label="Some task"]
  5. n2[label="Some other task"]
  6. n3[label="Split classes"]
  7.  
  8. subgraph done {
  9. node[fillcolor="#ccffcc", style=filled]
  10.  
  11. n4[label="Add property"]
  12. n5[label="Something again"]
  13. }
  14.  
  15. goal -> n1
  16. goal -> n2
  17. n1 -> n3
  18. n1 -> n4
  19. n1 -> n5
  20. }
Add Comment
Please, Sign In to add comment