Guest User

Untitled

a guest
Aug 19th, 2018
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.18 KB | None | 0 0
  1. >>> think(z, PlayerX, 0)
  2. computing move for game
  3. +---+---+---+
  4. | O | | O |
  5. +---+---+---+
  6. | | X | |
  7. +---+---+---+
  8. | X | | |
  9. +---+---+---+
  10. Game in progress, and it is PlayerX's turn.
  11.  
  12. -- looking at 1 --
  13. * will block
  14. * will make position 7 a winning move
  15. * theorizing about putting player on defense there
  16. * would force a move for defense
  17. -- looking at 3 --
  18. * will make position 5 a winning move
  19. * theorizing about putting player on defense there
  20. * would force a move for defense
  21. -- looking at 5 --
  22. * player would make position 8 a winning move
  23. * will make position 3 a winning move
  24. * theorizing about putting player on defense there
  25. * would force a move for defense
  26. -- looking at 7 --
  27. * will make position 1 a winning move
  28. * will make position 8 a winning move
  29. * will create a fork to win
  30. * theorizing about putting player on defense there
  31. * would force a move for defense
  32. -- looking at 8 --
  33. * player would make position 5 a winning move
  34. * will make position 7 a winning move
  35. * theorizing about putting player on defense there
  36. * would force a move for defense
  37. position 1 = 9
  38. position 3 = 7
  39. position 5 = 7
  40. position 7 = 8
  41. position 8 = 7
  42. >>>
Add Comment
Please, Sign In to add comment