I decided to write a small program that solves TicTacToe in order to try out the effect of some pruning techniques on a trivial game. The full game tree using minimax to solve it only ends up with 549,946 possible games. With alpha-beta pruning, the number of states required to evaluate was reduced to 18,297. Then I applied a transposition table that brings the number down to 2,592. Now I want to see how low that number can go.

The next enhancement I want to apply is a strategic reduction. The basic idea is to combine states that have equivalent strategic value. For instance, on the first move, if X plays first, there is nothing strategically different (assuming your opponent plays optimally) about choosing one corner instead of another. In the same situation, the same is true of the center of the walls of the board, and the center is also significant. By reducing to significant states only, you end up with only 3 states for evaluation on the first move instead of 9. This technique should be very useful since it prunes states near the top of the game tree. This idea came from the GameShrink method created by a group at CMU, only I am trying to avoid writing the general form, and just doing what is needed to apply the technique to TicTacToe.

In order to achieve this, I modified my hash function (for the transposition table) to enumerate all strategically equivalent positions (using rotation and flipping functions), and to only return the lowest of the values for each board. Unfortunately now my program thinks X can force a win in 5 moves from an empty board when going first. After a long debugging session, it became apparent to me the program was always returning the move for the lowest strategically significant move (I store the last move in the transposition table as part of my state). Is there a better way I can go about adding this feature, or a simple method for determining the correct move applicable to the current situation with what I have already done?

link|improve this question

This is an interesting question, and as far as I can tell all the other implementations floating around also use the "check every square" method rather than building a decision tree. I'm not sure if any of this can be called A.I. though :s – Codesleuth Jun 7 '10 at 12:28
@Codesleuth careful about terminology -- a decision tree is a machine learning technique that does not apply here – Shaggy Frog Jun 15 '10 at 18:07
@Shaggy Frog: If you're talking about neural networks, that's not what I meant. – Codesleuth Jun 16 '10 at 8:12
@Codesleuth a decision tree is not a neural network, but they are both forms of machine learning algorithms. Also, heuristic search as described here is certainly a form of AI. I recommend you spend some time researching the topic. – Shaggy Frog Jun 16 '10 at 14:07
@Shaggy Frog: What? Why are you arguing this? My suggestion that this might not be A.I. was a personal view, in that I don't consider pre-determined decision making tables or incremental searches advanced enough to be intelligence. I've come to this conclusion because I have already researched the topic. – Codesleuth Jun 16 '10 at 14:29
show 3 more comments
feedback

5 Answers

up vote 2 down vote accepted

You're on the right track when you're thinking about reflections and rotations. However, you're applying it to the wrong place. Don't add it to your transposition table or your transposition table code -- put it inside the move generation function, to eliminate logically equivalent states from the get-go.

Keep your transposition table and associated code as small and as efficient as possible.

link|improve this answer
This helped a lot. Funny enough though, as soon as I did this, I ran into all kinds of problems. Turns out I was focusing on solving the game up front, and attempting to play from previously evaluated positions, which sometimes had not been evaluated. Once I modified it to just re run the search for each move, all the problems went away. Now I am on to move ordering techniques. Do you know off the top of your head of any good move ordering publications? – NickLarsen Jun 23 '10 at 14:07
Not offhand as move ordering is usually heavily tied in with the domain. Near the top of the search tree it can be quite important but near the bottom it might cost more time than it saves in node expansions. Consider only doing it at nodes (say) >=3 ply from the bottom. One cheap and easy thing to do in general is to do a depth-1 search for each node and then sort based on that, which helps you leverage your existing evaluation function. – Shaggy Frog Jun 23 '10 at 15:27
feedback

My gut feeling is that you are using too big of a hammer to attack this problem. Each of the 9 spots can only have one of two labels: X or O or empty. You have then at most 3^9 = 19,683 unique boards. Since there are 3 equivalent reflections for every board, you really only have 3^9 / 4 ~ 5k boards. You can reduce this by throwing out invalid boards (if they have a row of X's AND a row of O's simultaneously).

So with a compact representation, you would need less than 10kb of memory to enumerate everything. I would evaluate and store the entire game graph in memory.

We can label every single board with its true minimax value, by computing the minimax values bottom up instead of top down (as in your tree search method). Here's a general outline: We compute the minimax values for all unique boards and label them all first, before the game starts. To make the minimax move, you simply look at the boards succeeding your current state, and pick the move with the best minimax value.

Here's how to perform the initial labeling. Generate all valid unique boards, throwing out reflections. Now we start labeling the boards with the most moves (9), and iterating down to the boards with least moves (0). Label any endgame boards with wins, losses, and draws. For any non-endgame boards where it's X's turn to move: 1) if there exists a successor board that's a win for X, label this board a win; 2) if in successor boards there are no wins but there exists a draw, then label this board a draw; 3) if in successor boards there are no wins and no draws then label this board a loss. The logic is similar when labeling for O's turn.

As far as implementation goes, because of the small size of the state space I would code the "if there exists" logic just as a simple loop over all 5k states. But if you really wanted to tweak this for asymptotic running time, you would construct a directed graph of which board states lead to which other board states, and perform the minimax labeling by traversing in the reverse direction of the edges.

link|improve this answer
1  
I'd vote for this as the answer, but you're missing the point of the exercise which is to use a specific hammer. Still, you're right in that there aren't 549,946 possible games of TicTacToe (even including unselected, there isn't that many possible states, let alone games). The idea is interesting, but the poster needs to work out the details of what can happen a bit more first. Start with the 512 possible ending states for a 3x3 grid, eliminate the impossible, and then work on equivalent moves and states. – jmoreno Jun 22 '10 at 5:36
Thanks, maybe I can work out more details to a quick algorithm. I understand your point about the exercise, but I would suggest that there is little value in using a technique that poorly fits a problem for that particular problem, especially when alternatives are not only cheaper, simpler, and faster. Using a technique that doesn't fit a problem also may limit what you can learn about that technique (i.e. in the real world if you would have always used an alternative, what reusable knowledge/experience would you have gained from the exercise?) – Eric Jun 22 '10 at 17:29
I really appreciate this answer and I have a few questions, and a few points. If you include move history in your state, as basic minimax implicitly does, there are exactly 549,946 possible reachable states which terminate at the moment the board fills or either player makes 3 in a row, and far more if you allow the game to progress beyond finding a winner on a non empty board, though I did not. I do agree the extra work is worthless however, and clearly basic minimax requires an enormous effort for even trivial games, but that does not make it bad for exercise. – NickLarsen Jun 22 '10 at 20:35
The use of a transposition table should reduce the tree size to only the number of states possibly reachable in a game regardless of history, which is great because history does not affect the available moves in tic tac toe and therefore has no effect on the optimal move. Using only a transposition table my small program shows 5478 reachable states in tic tac toe, which I think is correct for my rules. – NickLarsen Jun 22 '10 at 21:10
1  
Since board spots can be blank, the possible number of states no matter what is 3^9 = 19683. Realizing that valid, reachable states have either the same number of X's as O's or 1 more X than O's, and many states are not reachable due to my rules, 5478 seems reasonable. 2^9 only represents the leaf nodes for filling every position on the board in no particular order. – NickLarsen Jun 22 '10 at 21:19
show 14 more comments
feedback

You need to return the (reverse) transposition along with the lowest value position. That way you can apply the reverse transposition to the prospective moves in order to get the next position.

link|improve this answer
This is a technique I have found very valuable in the past, particularly for very complex games like when I was working on poker, but it felt like it would be more effort than it was worth for this simple project. I have never written a general form state mapper either. Do you know of any? Might be a good project to take on sometime. – NickLarsen Jun 23 '10 at 14:11
feedback

Why do you need to make the transposition table mutable? The best move does not depend on the history.

link|improve this answer
feedback

There is a lot that can be said about this, but I will just give one tip here which will reduce your tree size: Matt Ginsberg developed a method called Partition Search which does equivalency reductions on the board. It worked well in Bridge, and he uses tic-tac-toe as an example.

link|improve this answer
Thanks for the reading link. I'll take a look soon. – NickLarsen Jun 23 '10 at 14:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.