Advertisement
michael_hartman_cz

TED graphviz FIT_CTU

Apr 2nd, 2013
2,737
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 1.42 KB | None | 0 0
  1. digraph twitter {
  2.     node [ shape="house" ];
  3.  
  4.     subgraph {
  5.         rank=source;
  6.         n_FIT_CTU [ label="FIT_CTU" shape="Mdiamond" ];
  7.     }
  8.  
  9.     subgraph {
  10.         rank=source;
  11.         n_dwurfik [ label="dwurfik" shape="egg" ];
  12.         n_ignorantX [ label="ignorantX" shape="egg" ];
  13.     }
  14.  
  15.     subgraph {
  16.         rank=same;
  17.         n_HoopHooh [ label="HoopHooh" ];
  18.         n_VjvJvvjj [ label="VjvJvvjj" ];
  19.         n_mmmimmii [ label="mmmimmii" ];
  20.     }
  21.  
  22.     subgraph {
  23.         rank=same;
  24.         n_wwWWwWwWWwwoo [ label="wwWWwWwWWwwoo" ];
  25.         n_gnngugn [ label="gnngugn" ];
  26.         n_lxtltx [ label="lxtltx" ];
  27.     }
  28.  
  29.     n_FIT_CTU -> n_HoopHooh [ style="dotted" ];
  30.     n_FIT_CTU -> n_VjvJvvjj [ style="dotted" ];
  31.     n_FIT_CTU -> n_mmmimmii [ style="dotted" ];
  32.     n_FIT_CTU -> n_dwurfik [ style="dashed" color="green" ];
  33.     n_VjvJvvjj -> n_wwWWwWwWWwwoo [ style="dotted" ];
  34.     n_mmmimmii -> n_wwWWwWwWWwwoo [ style="dotted" ];
  35.     n_mmmimmii -> n_gnngugn [ style="dotted" ];
  36.     n_wwWWwWwWWwwoo -> n_gnngugn [ style="dotted" ];
  37.     n_FIT_CTU -> n_lxtltx [ style="dashed" color="green" ];
  38.     n_FIT_CTU -> n_VjvJvvjj [ style="dashed" color="red" ];
  39.     n_lxtltx -> n_wwWWwWwWWwwoo [ style="dashed" color="yellow" ];
  40.     n_gnngugn -> n_VjvJvvjj [ style="dashed" color="blue" ];
  41.     n_FIT_CTU -> n_ignorantX [ style="solid" label="3" ];
  42.     n_ignorantX -> n_dwurfik [ style="solid" label="9" ];
  43.     n_gnngugn -> n_ignorantX [ style="solid" label="5" ];
  44.     n_FIT_CTU -> n_mmmimmii [ style="solid" label="2" ];
  45.     n_HoopHooh -> n_lxtltx [ style="dotted" ];
  46. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement