Advertisement
froleyks

mimi

Dec 16th, 2020
233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.27 KB | None | 0 0
  1. digraph {
  2. graph [rankdir=LR]
  3. node [shape=circle]
  4. "i_00|00" [shape=point]
  5. "i_00|00" -> "00|00"
  6. "00|01" [shape=doublecircle]
  7. "00|11" [shape=doublecircle]
  8. "01|01" [shape=doublecircle]
  9. "01|11" [shape=doublecircle]
  10. "10|00" [shape=doublecircle]
  11. "10|10" [shape=doublecircle]
  12. "11|00" [shape=doublecircle]
  13. "11|10" [shape=doublecircle]
  14. "00|00" -> "00|00" [label=0]
  15. "00|00" -> "01|10" [label=1]
  16. "01|10" -> "10|01" [label=0]
  17. "01|10" -> "11|11" [label=1]
  18. "10|01" -> "00|00" [label=0]
  19. "10|01" -> "01|10" [label=1]
  20. "11|11" -> "10|01" [label=0]
  21. "11|11" -> "11|11" [label=1]
  22. "00|10" -> "00|01" [label=0]
  23. "00|10" -> "01|11" [label=1]
  24. "01|01" -> "10|00" [label=0]
  25. "01|01" -> "11|10" [label=1]
  26. "10|11" -> "00|01" [label=0]
  27. "10|11" -> "01|11" [label=1]
  28. "11|00" -> "10|00" [label=0]
  29. "11|00" -> "11|10" [label=1]
  30. "00|01" -> "00|00" [label=0]
  31. "00|01" -> "01|10" [label=1]
  32. "01|11" -> "10|01" [label=0]
  33. "01|11" -> "11|11" [label=1]
  34. "10|00" -> "00|00" [label=0]
  35. "10|00" -> "01|10" [label=1]
  36. "11|10" -> "10|01" [label=0]
  37. "11|10" -> "11|11" [label=1]
  38. "00|11" -> "00|01" [label=0]
  39. "00|11" -> "01|11" [label=1]
  40. "01|00" -> "10|00" [label=0]
  41. "01|00" -> "11|10" [label=1]
  42. "10|10" -> "00|01" [label=0]
  43. "10|10" -> "01|11" [label=1]
  44. "11|01" -> "10|00" [label=0]
  45. "11|01" -> "11|10" [label=1]
  46. }
  47.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement