Reduced Search Depth and Heuristic Evaluation for Connect Four

by Justin Skycak on

Combining game-specific human intelligence (heuristics) and generalizable artificial intelligence (minimax on a game tree)

This post is a chapter in the book Introduction to Algorithms and Machine Learning: from Sorting to Strategic Agents. Suggested citation: Skycak, J. (2022). Reduced Search Depth and Heuristic Evaluation for Connect Four. Introduction to Algorithms and Machine Learning: from Sorting to Strategic Agents. https://justinmath.com/reduced-search-depth-and-heuristic-evaluation-for-connect-four/


In theory, we could solve any game by building a big game tree, labeling the terminal states as wins, losses, or ties, and then working backwards from that information to identify the minimax strategy. But in practice, game trees get so big so quickly that for all but the most simple games, game trees are too expensive to store in memory and take too long to traverse.

For example, consider the game of connect four, which is normally played on a $7 \times 6$ board. Whereas tic-tac-toe had $5\,478,$ valid board states, connect four has $4\,531\,985\,219\,092$ (source). Implementing a game tree of this size is infeasible – if you’re not convinced, try running a simple “for” loop that loops over the numbers from $1$ to $4\,531\,985\,219\,092.$ If looping over a million numbers takes a few seconds, then looping over a trillion numbers will take weeks.

Reduced Search Depth

We can’t build a full game tree for connect four. But what we can do instead is

  1. reduce the search depth (i.e. build a shortened game tree up to some maximum depth), and
  2. come up with some kind of heuristic evaluation function to rate how good or bad each leaf node state is.

Then we can apply the minimax strategy in an attempt to move in the direction of the best leaf node state.

This procedure for selecting a move can be outlined more explicitly as follows:

  1. Build a game tree that is $N$ layers deep from the current game state. (This is called an $N$-ply game tree.)
  2. Use the heuristic evaluation function to assign minimax to the terminal nodes in the game tree.
  3. Repeatedly propagate those values up to parent nodes using the minimax algorithm.
  4. Choose your action in accordance with the standard minimax strategy (i.e. choose the move that takes you to the child state with the highest minimax value).

Note that this time, you’ll have to relabel the game tree on every move because the terminal nodes of the tree will change (thereby changing the minimax values of the rest of the tree). But you don’t need to rebuild the full game tree on every move – you can take the existing game tree, prune off nodes that are no longer relevant, and grow the additional nodes needed to bring you back to a search depth of $N.$

Heuristic Evaluation Function

Now, let’s talk about the “secret sauce” in this recipe: the heuristic evaluation function. It takes a game state as input, and returns a number between $-1$ and $1$ that represents how strongly we want or do not want to be in that game state. To write this function we use our human intuition about the game. Here are some rough guidelines:

  • If we're 100% confident that a game state is a win or will result in a win, then the function should return $1.$
  • If we think that a win is more likely than a loss, then the function should return a decimal between $0$ and $1,$ with higher win probabilities corresponding to higher decimals.
  • If we have no idea whether a game state will result in a win or loss, or we think it will result in a tie, then the function should return $0.$
  • If we think that a win is less likely than a loss, then the function should return a decimal between $0$ and $-1,$ with lower win probabilities corresponding to more negative decimals.
  • If we're 100% confident that a game state is a loss or will result in a loss, then the function should return $-1.$

For example, here is a simple heuristic function for tic-tac-toe:

  1. If the game state is a definite win, tie, or loss, then return $1,$ $0,$ or $-1$ respectively.
  2. Otherwise, count up the number of rows, columns, and diagonals where you occupy two spaces and the third space is empty. Then, subtract the number of rows, columns, and diagonals where your opponent occupies two spaces and the third space is empty. Finally, divide the result by $8$ (which is the total number of rows, columns, and diagonals).

Exercises

Remember to alternate who goes first in the matchups described below.

  1. Implement a $9$-ply heuristic minimax tic-tac-toe player, i.e. it uses the heuristic evaluation function described above and a search depth of $N=9$ (which happens to be the full tree). Then, run it against the perfect minimax player that you created previously. Every game should result in a tie.
  2. Implement a $2$-ply heuristic minimax tic-tac-toe player. Then, run it against your $9$-ply heuristic player, as well as a purely random player. The $2$-ply player should do better than the random player but worse than the $9$-ply player.
  3. Develop a heuristic minimax connect four player that uses as many ply as can be computed quickly, and verify that it performs better than a random player.
  4. Verify that your heuristic minimax connect four player performs better than a "last-minute" player that moves randomly unless it has an opportunity to capture a win or block a loss on the next move. (If it doesn't, then you may need to improve your heuristic.)
  5. Play against your heuristic minimax connect four player yourself.


This post is a chapter in the book Introduction to Algorithms and Machine Learning: from Sorting to Strategic Agents. Suggested citation: Skycak, J. (2022). Reduced Search Depth and Heuristic Evaluation for Connect Four. Introduction to Algorithms and Machine Learning: from Sorting to Strategic Agents. https://justinmath.com/reduced-search-depth-and-heuristic-evaluation-for-connect-four/