Advertisement
Guest User

Untitled

a guest
Jun 6th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
DOT 0.46 KB | None | 0 0
  1. digraph {
  2.     rankdir = LR
  3.     dummy [label = "", shape = none]
  4.     0 [shape = circle]
  5.     1 [shape = circle]
  6.     2 [shape = circle]
  7.     3 [shape = circle]
  8.     dummy -> 0
  9.     0 -> 1 [label = "a(x)"]
  10.     0 -> 1 [label = "b(y)"]
  11.     0 -> 0 [label = "c(x)"]
  12.     1 -> 2 [label = "a(x)"]
  13.     1 -> 3 [label = "b(y)"]
  14.     1 -> 2 [label = "c(x)"]
  15.     2 -> 2 [label = "a(y)"]
  16.     2 -> 2 [label = "b(x)"]
  17.     2 -> 2 [label = "c(y)"]
  18.     3 -> 2 [label = "a(x)"]
  19.     3 -> 3 [label = "b(y)"]
  20.     3 -> 2 [label = "c(x)"]
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement