Advertisement
Guest User

Untitled

a guest
Jul 7th, 2017
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.67 KB | None | 0 0
  1. digraph g {
  2.  
  3.   rankdir = "UD"
  4.  
  5.   {rank=same; 22}
  6.   {rank=same; 18; 19; 20; 21}
  7.   {rank=same; 14; 15; 16; 17}
  8.   {rank=same; 9; 10; 11; 12; 13}
  9.   {rank=same; 3; 4; 5; 6; 7; 8}
  10.   {rank=same; 1; 2}
  11.  
  12.   1 -> 2;
  13.   2 -> 6;
  14.  
  15.   3 -> 4;
  16.   4 -> 5; 4 -> 10;
  17.   5 -> 1; 5 -> 4; 5 -> 11;
  18.   6 -> 7; 6 -> 12;
  19.   7 -> 11;
  20.   8 -> 7;
  21.  
  22.   9 -> 10; 9 -> 15;
  23.   10 -> 3; 10 -> 5; 10 -> 15;
  24.   11 -> 10; 11 -> 12;
  25.   12 -> 11; 12 -> 8; 12 -> 13; 12 -> 16; 12 -> 6;
  26.   13 -> 16;
  27.  
  28.   14 -> 15; 14 -> 19;
  29.   15 -> 9; 15 -> 10; 15 -> 16; 15 -> 19;
  30.   16 -> 15; 16 -> 17; 16 -> 11;
  31.   17 -> 20;
  32.  
  33.   18 -> 19;
  34.   19 -> 14; 19 -> 16; 19 -> 22; 19 -> 20;
  35.   20 -> 19; 20 -> 21;
  36.   21 -> 22;
  37.  
  38.   22 -> 18; 22 -> 19;
  39.  
  40. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement