Presentation is loading. Please wait.

Presentation is loading. Please wait.

HPC Checkers By Andy Block Ryan Egan. Table of Contents Overview of Checkers ▫Overview of Checkers ▫Rules of the Game AI Theory The Program ▫Board ▫Sample.

Similar presentations


Presentation on theme: "HPC Checkers By Andy Block Ryan Egan. Table of Contents Overview of Checkers ▫Overview of Checkers ▫Rules of the Game AI Theory The Program ▫Board ▫Sample."— Presentation transcript:

1 HPC Checkers By Andy Block Ryan Egan

2 Table of Contents Overview of Checkers ▫Overview of Checkers ▫Rules of the Game AI Theory The Program ▫Board ▫Sample Jump ▫Future Moves ▫Parallel Processing ▫Using the Future Table Work in progress

3 Overview of Checkers 8x8 checkered board using only the black squares 32 positions Search space of 5x10 20 Each Player starts with 12 men

4 Rules of Checkers Pieces ▫Men can only move forwarded diagonally 1 space ▫Kings can move forwarded and backward diagonally 1 space ▫Upon reaching the opposite back row men become kings ▫Each player starts with 12 men Jumping ▫Men and kings are required to jump when possible ▫Multiple jumps are allowed and required when possible ▫When a man or king is jumped it is removed from the board ▫If a man jumps into the back row and becomes a king the turn is ended.

5 Rules of Checkers cont. Start Game ▫Red always moves first End Game ▫The game ends when one player can no longer move ▫Game can end it a draw

6 AI Theory Heuristics ▫Not perusing paths that appear to not be as beneficial as other paths ▫Alpha-beta pruning Planning ▫Future moves are calculated to generate a plan of attack that maximizes benefit and minimizes loss.

7 The Program The Board ▫Stored as 33 value integer array ▫Starting board  {1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3,3, 3,3,3,3,5} ▫Adjacency matrix used to navigate board. ▫The 33 rd value in the board array is used for locations that are off the board in the Adjacency matrix.

8

9 The Program cont. Jumps ▫For men jumps form a directed and acyclic graph (DAG) ▫A breadth first search is used to build a list of adjacent jumpable locations ▫Starting from the last found location the adjacency list is traversed in reverse to find the longest path. ▫This will return the greatest number of possible jumps.  Issue: This may miss jumps that would have better outcomes later on.

10 Sample Jump Enqueue Root (2) 2 {2

11 Sample Jump Look Left (9) 2 {2

12 Sample Jump Enqueue (9) 2 9 {2

13 Sample Jump Look Right 2 9 {2

14 Sample Jump Look Left (16) 2 9 {2,9},

15 Sample Jump Enqueue (16) 2 16 9 {2,9},

16 Sample Jump Look Right (18) 2 16 9 {2,9},

17 Sample Jump 2 1618 9 Enqueue (18) {2,9},

18 Sample Jump 2 1618 9 Look Left {2,9},{9,16},

19 Sample Jump 2 1618 9 Look Right (25) {2,9},{9,16},

20 Sample Jump 2 1618 9 25 Enqueue (18) {2,9},{9,16},

21 Sample Jump 2 1618 9 25 Look left {2,9},{9,16},{9,18},

22 Sample Jump 2 1618 9 25 Look Right {2,9},{9,16},{9,18},

23 Sample Jump 2 1618 9 25 Look Left {2,9},{9,16},{9,18},{16,25}

24 Sample Jump 2 1618 9 25 Look Right {2,9},{9,16},{9,18},{16,25}

25 Sample Jump 2 1618 9 25 Back to Root {2,9},{9,16},{9,18},{16,25}

26 Sample Jump 2 1618 9 25 Back to Root {2,9},{9,16},{9,18},{16,25}

27 Sample Jump 2 1618 9 25 Back to Root {2,9},{9,16},{9,18},{16,25}

28 Sample Jump 2 1618 9 25 Back to Root {2,9},{9,16},{9,18},{16,25}

29 Sample Jump 2 1618 9 25 Back to Root {2,9},{9,16},{9,18},{16,25}

30 Future Moves For each move of player 1 each possible move of player 2 is calculated For each move of player 2 each possible move of player 1 is calculated This is repeated until a given search depth is reached. Very quickly this can result in very large search area.

31 Future Moves To improve the play of the AI the benefit of possible moves is calculated. For each move of player 1 each possible move of player 2 is calculated For each move of player 2 each possible move of player 1 is calculated This is repeated until a given search depth is reached. When a given depth is reached the value of that path is calculated. Very quickly this can result in very large search area.

32 Future Moves For all Red

33 Future Moves 812 For all Red {8,12}

34 Future Moves 812 For all Red {8,12},{9,12} 912

35 Future Moves 812 For all Red {8,12},{9,12},{9,13} 912 913

36 Future Moves 812 For all Red {8,12},{9,12},{9,13},{10,13}, 912 913 1013

37 Future Moves 812 For all Red {8,12},{9,12},{9,13},{10,13}, {10,14} 912 913 1013 1014

38 Future Moves 812 For all Red {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14} 912 913 1013 1014 1114

39 Future Moves 812 For all Red {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14} 912 913 1013 1014 1114 1115

40 Future Moves 812 White’s counter move {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14},{11,15} 2016 2017 2117 2118 2218 2219 2319 REDWHITE

41 Future Moves 812 White’s counter move {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14},{11,15} 2016 2017 2117 2118 2218 2219 2319 REDWHITE

42 Future Moves 812 White’s counter move {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14},{11,15} 2016 2017 2117 2118 2218 2219 2319 REDWHITE

43 Future Moves 812 White’s counter move {8,12},{9,12},{9,13},{10,13}, {10,14},{11,14},{11,15} 2016 2017 2117 2118 2218 2219 2319 REDWHITE

44 Parallel Processing Can‘t have player 2 waiting for player 1’s move to be completed. Search must be conducted in a timely manner. To improve performance multiple branches of the future move table are computed at the same time.

45 Parallel Processing Player 1 Player 2 Each set of responses are run as a separate threads Each set can be computed independently of other sets of the same or greater depth as well as steps that did not directly precede it.

46 P7P6P5P4P3 Parallel Processing Player 1 Player 2 This allows the task of searching for the best move to be split among multiple processors as well as multiple threads. This makes it well suited to being run on the cluster P1P2

47 Using the Future Table When a move made by player 1 or player 2 make a path in the table no longer possible they are removed. The path that yields the highest possible point value is taken. The point value of a path is determined by multiple factors. Jumping a man gets points Taking a king gets more points than taking a man Points are deducted for being jumped and losing pieces Point values for each move are determined by the total value of the possible paths that result.

48 Work in Progress Finish Threading Migrate to Cluster King jump logic ▫Requires a modification to the man jump logic End game detection ▫Draw  If nothing changes in the future lookup within 40 moves call it a draw. Finalize point strategy


Download ppt "HPC Checkers By Andy Block Ryan Egan. Table of Contents Overview of Checkers ▫Overview of Checkers ▫Rules of the Game AI Theory The Program ▫Board ▫Sample."

Similar presentations


Ads by Google