项目作者: migafgarcia

项目描述 :
A Player vs AI game of checkers implemented in Prolog
高级语言: Prolog
项目地址: git://github.com/migafgarcia/prolog-checkers.git
创建时间: 2015-05-30T12:45:02Z
项目社区:https://github.com/migafgarcia/prolog-checkers

开源协议:MIT License

下载


Prolog Checkers

A Player vs AI game of checkers implemented in Prolog.

This project was an assignment for the Logic Programming course.

To Run

The game is played on the console. To run simply load the code into your Prolog interpreter, for example, SWI Prolog or Yap and run main. .

To play

The player is presented with a list of possible moves and must chose one of them. The AI is running the minimax algorithm with alpha-beta pruning based of piece and board position weights.

  1. Prolog checkers
  2. To play select one of the options available:
  3. 3. for example (the dot in the end is important!)
  4. 1 2 3 4 5 6 7 8
  5. 1
  6. 2
  7. 3
  8. 4 _ _ _ _
  9. 5 _ _ _ _
  10. 6
  11. 7
  12. 8
  13. White (computer) turn to play.
  14. Move evaluation: 11
  15. (1,6) -> (2,5)
  16. 1 2 3 4 5 6 7 8
  17. 1
  18. 2
  19. 3
  20. 4 _ _ _ _
  21. 5 _ _ _
  22. 6 _
  23. 7
  24. 8
  25. Black (human) turn to play.
  26. 1: (2,3) -> (1,4)
  27. 2: (2,3) -> (3,4)
  28. 3: (4,3) -> (3,4)
  29. 4: (4,3) -> (5,4)
  30. 5: (6,3) -> (5,4)
  31. 6: (6,3) -> (7,4)
  32. 7: (8,3) -> (7,4)
  33. |: