The various components of the Game:
- Initial State: This includes the board position and the player who will move first.
- Successor Function: For a node it returns the list of it's successor function and the state they will result into.
- Terminal States: The states where the game has ended.
- Utility Function: This gives a numerical value to all the terminal states. High values are considered good for MAX and bad for MIN and vice-versa.
The following video gives a complete explanation of the Minimax Algorithm.
Following is the Minimax Algorithm:
No comments:
Post a Comment