1. Homepage
  2. Programming
  3. Assignment: Game Tree Search: Checkers

Assignment: Game Tree Search: Checkers

Engage in a Conversation
Game Tree SearchCheckersPython

How the Game Works CourseNana.COM

Checkers is a 2-player board game played with distinct pieces, where one player's pieces are black and the other player's pieces are red. The standard version of the game is played on an 8x8 chess board. The players take turns moving pieces on the board, with the red player typically moving first.  CourseNana.COM

Moving and capturing pieces are dictated by the game's rules. An overview of Checkers is provided hereLinks to an external site.. We will be coding the version of Checkers called Standard English Draughts, which includes mandatory captures.  CourseNana.COM

CourseNana.COM

The full rules of the game are explained hereLinks to an external site., but the quick summary is: CourseNana.COM

·       Objective: Each player's goal is to capture all of their opponent's pieces. CourseNana.COM

·       Game Ending: The game ends when one of the players has no pieces remaining or has no legal moves left. In that latter case, if it's a player's turn but they can't move any of their pieces, that player loses the game. CourseNana.COM

·       Setup: At the beginning of the game, one player has 12 red pieces and the other player has 12 black pieces. The pieces are placed on the dark squares of the board across the first three rows on each side (Figure 1. at left). For this assignment, your AI will play the red pieces moving up the board while our AI will play the black pieces moving down the board. The red player (that's you) makes the first move. CourseNana.COM

·       Moves: CourseNana.COM

o   Each piece can only move forward diagonally in two ways: CourseNana.COM

§  Moving one space, if the adjacent space is empty (Figure 1, at left), or CourseNana.COM

§  Moving two spaces if the adjacent space is occupied by the opponent, and space beyond that is empty (Figure 1, in the middle). CourseNana.COM

o   In the second case, the player ’captures’ the opponent’s piece that was jumped over. CourseNana.COM

o   Multiple captures: CourseNana.COM

§  If a move leads to capture, and the piece ends up sitting at a position that can jump over another opponent’s piece, the player can move it again and capture another piece of the opponent (Figure 1, at right). CourseNana.COM

§  This sequence of moves does not need to be on a straight line and can be ’zigzag’. CourseNana.COM

o   Kings: CourseNana.COM

§  When one of the pieces reaches the opponent's end of the board (the last row, or the first row from the opponent’s side), it turns into a ”king” and will be granted a unique power: it can move both forward and backward. CourseNana.COM

We recommend that you start this assignment by playing some games of checkers to develop a better understanding of how the game works and what strategies can give you an advantage. An online version of the game that allows you to compete against an AI can be found at this linkLinks to an external site.. CourseNana.COM

What you need to do CourseNana.COM

You will implement an AI agent that can solve a checkers endgame puzzle, where the agent uses minimax, alpha-beta pruning, and any additional techniques of your choosing. Your agent will return the best move possible, given the endgame puzzle we provide and the time available. CourseNana.COM

We will use multiple endgame boards to test the correctness and performance of your implementation. An endgame is a board configuration where a winning solution is guaranteed, given the right set of moves. These are considered challenging because the solutions are not obvious or require a large number of moves to arrive at. CourseNana.COM

Evaluation CourseNana.COM

Your solution will be marked based on the number of moves your AI agent takes to end the game (compared to the optimal number of moves from a perfect AI agent). When counting the number of moves (also called the solution length), we will count moves from both your agent and the opponent. For example, if your agent takes 4 moves to end the game with the opponent taking 3 moves in between, the total number of moves would be 7. CourseNana.COM

Input Format CourseNana.COM

The board configuration will be provided in text files with names input0.txtinput1.txt, etc. Each line in this input file will represent a row from the checkers board, with 8 characters in each row, one for each square on the board. There are 5 possible values for these characters: CourseNana.COM

·       r’ denotes a red piece, CourseNana.COM

·       b’ denotes a black piece, CourseNana.COM

·       R’ denotes a red king, CourseNana.COM

·       B’ denotes a black king, and CourseNana.COM

·       .’ (the period character) denotes an empty square. CourseNana.COM

·       As an example, the contents of the file puzzle1.txt is as follows: CourseNana.COM

........
....b...
.......R
..b.b...
...b...r
........
...r....
....B...
CourseNana.COM

For these puzzle layouts, assume that your AI controls the red pieces and that it's the red player's turn to move. CourseNana.COM

Your main program should take two command-line arguments: one for the input file and one for the output file: CourseNana.COM

    python3 checkers.py <input file> <output file> CourseNana.COM

For example, the command python3 checkers.py input1.txt output1.txt will take in the board layout stored in input1.txt and store the resulting board in file output1.txt. The input and output files will both be in standard text format.  CourseNana.COM

Output format CourseNana.COM

Your program needs to return the best move possible, given the input layout that we provide. This move will be represented by the 8x8 board layout that will result once your AI completes its move. This 8x8 board will be saved in a file whose name is provided by the second command-line argument (as shown above). Once your program finds a solution (or the optimal solution), save it in a file using the following format. The names of the files are explained in the corresponding sections. CourseNana.COM

For instance, given the endgame layout shown above, your output file would contain the following: CourseNana.COM

........
....b...
.......R
..b.b.r.
...b....
........
...r....
....B...
CourseNana.COM

Time and Space Constraints CourseNana.COM

Your AI agent has at most 5 minutes to make each move on the teach.cs server. Because the number of moves grows exponentially with the depth of the game tree, your program might consume a significant amount of memory if you don't prune or implement any other game tree techniques. Our autotester will timeout after a few minutes, however, your program should be able to run without causing any memory exceptions on the teach.cs servers under typical conditions (we typically test your submission when there is a light load of jobs running on the teach.cs server). CourseNana.COM

Suggestions CourseNana.COM

The following are optional suggestions you can follow to implement a Checkers AI agent. In addition to your checkers.py file, you must also submit a heursitics.pdf file in which you describe the game tree strategies that you implemented.  CourseNana.COM

Minimax: The first thing you will do is to write a function utility function that computes the utility of a game board state for a colour (i.e. whose turn it is). A simple utility could be based on the number of pieces of the player’s colour minus the number of pieces of the opponent, with each regular piece worth one point and each king worth 2. If your agent has a single king and six regular pieces, assign this a value of 2 1 + 6 = 8. If your agent’s opponent has two kings and 3 regular pieces, assign this a value of 2 2 + 3 = 7 points. The difference in points between agents, and the result of the utility function, will therefore be 8 − 7 = 1. CourseNana.COM

Then, implement the method select move minimax which will accept a state (which is an object of type Board) as well as the player’s colour (’r’ or ’b’) and return a single move that corresponds with the minimax strategy. More specifically, your function should select the action that leads to the state with the highest minimax value. Implement minimax recursively by writing two functions minimax max node and minimax min node. CourseNana.COM

Hints: Write a successors function which returns all the successive states (which includes moves and successive board representations) for a given player. Pay attention to which player should make a move for min nodes and max nodes. CourseNana.COM

Depth Limit: To make your agent really functional, you must implement a depth limit. Change your minimax code to recursively send the limit parameter to both minimax min node and minimax max node. In order to enforce the depth limit in your code, you will want to decrease the limit parameter at each recursion. When you arrive at your depth limit (i.e. when the limit parameter is zero), use a heuristic function to define the value of any non-terminal state. You can call the compute utility function as your heuristic to estimate non-terminal state quality. CourseNana.COM

Alpha-Beta Pruning: The simple minimax approach can be quite slow. To improve its performance we can write the function select move alpha-beta to compute the best move using alpha-beta pruning. The parameters and return values will be the same as for minimax. Much like minimax, your alpha-beta implementation should recursively call two helper functions: alpha-beta min node and alpha-beta max node. As with minimax, recursively send the limit parameter to alpha-beta min node and alpha-beta max node. When you arrive at your depth limit, call compute utility to generate a utility value for each given state. CourseNana.COM

Caching States: We can try to speed up the AI even more by caching states we've seen before. To implement state caching you will need to create a dictionary in your AI player (this can just be stored in a global variable on the top level of the file) that maps board states to their minimax value or that checks values against stored alpha and beta parameters. Modify your minimax and alpha-beta pruning functions to store states in that dictionary after their value is known. Then check the dictionary at the beginning of each function. If a state is already in the dictionary, then do not explore it again. CourseNana.COM

Your Own Heuristic The prior steps should give you a good AI player, but we have only scratched the surface. There are many possible improvements that would create an even better AI. To improve your AI, create your own game heuristic. You can use this in place of computing utility in your alpha-beta or Minimax routines. Some ideas for heuristic functions for checkers could include: CourseNana.COM

1.    Considering board locations where pieces are stable (i.e. where they cannot be captured anymore), CourseNana.COM

2.    Consider the number of moves you and your opponent can make given the current board configuration. CourseNana.COM

3.    Tuning your strategy towards the end game. CourseNana.COM

You can also do your own research to find a wide range of other good heuristics (for example, hereLinks to an external site. is a good start).  CourseNana.COM

Node Ordering Heuristic: Finally, note that alpha-beta pruning works better if nodes that lead to a better utility are explored first. To do this, in the Alpha-beta pruning functions, try using your heuristic to order the nodes that you explore. If your heuristic makes reasonably good estimates of non-terminal state values, this should lead to a little bit of a speed up because a good ordering will lead to more pruning. CourseNana.COM

  CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Game Tree Search代写,Checkers代写,Python代写,Game Tree Search代编,Checkers代编,Python代编,Game Tree Search代考,Checkers代考,Python代考,Game Tree Searchhelp,Checkershelp,Pythonhelp,Game Tree Search作业代写,Checkers作业代写,Python作业代写,Game Tree Search编程代写,Checkers编程代写,Python编程代写,Game Tree Searchprogramming help,Checkersprogramming help,Pythonprogramming help,Game Tree Searchassignment help,Checkersassignment help,Pythonassignment help,Game Tree Searchsolution,Checkerssolution,Pythonsolution,