Advertisement
Guest User

Untitled

a guest
Oct 16th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.83 KB | None | 0 0
  1. 'q_#': {
  2. '0': '->',
  3. '1': '->',
  4. '#': ('q_decL', '<-'),
  5. '[]': False,
  6. },
  7. 'q_decL': {
  8. '0': '<-',
  9. '1': ('0', 'q_decR', '->'),
  10. '#': False,
  11. '[]': 'q_checkbin',
  12. },
  13. 'q_decR': {
  14. '0': ('1', 'q_decR', '->'),
  15. '1': False,
  16. '#': ('q_B', '->'),
  17. '[]': False,
  18. },
  19. 'q_0': {
  20. '0': ('#', 'q_B', '<-'),
  21. '1': False,
  22. '#': '->',
  23. '[]': False,
  24. },
  25. 'q_B': {
  26. '0': '<-',
  27. '1': '<-',
  28. '#': '<-',
  29. '[]': '->',
  30. },
  31. 'q_checkbin': {
  32. '0': '->',
  33. '1': False,
  34. '#': ('q_checkunary', '->'),
  35. '[]': False,
  36. },
  37. 'q_checkunary': {
  38. '0': False,
  39. '1': False,
  40. '#': '->',
  41. '[]': True,
  42. },
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement