Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. strict digraph {
  2. node [shape=box]
  3. graph [newrank=true ranksep=0.3 nodesep=0.5]
  4.  
  5. func1 [style=rounded]
  6. func1 -> do_thing1 -> do_thing2 -> do_thing3 -> do_thing4 -> end
  7.  
  8. func2 [style=rounded]
  9. func2 -> do_foo -> do_bar
  10. do_thing1:e -> func2:w [constraint=false]
  11.  
  12. do_bar -> func3 [style=invis]
  13. func3 [style=rounded]
  14. func3 -> do_hoge -> do_fuga
  15. do_thing2:e -> func3:w [constraint=false]
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement