Tic-Tac-Toe changelog Version 1.1 2005-06-07 - Board changed from object to byte[][] and children changed to Node[] from ArrayList in order to bring AI vs. AI game in under standard memory limit for java. - Made into full blown project with ant build script. - Created installer (shortcut set to AI v AI as default). - Added to CVS. - Added "press enter to exit" so cmd window doesn't disappear when run from shortcut. Version 1.0 - Commandline version of Tic-Tac-Toe with Human, dumb AI and minimax with Alpha-Beta pruning AI. Done mainly to clarify my knowledge of the algorithm for the latter. - Must be run with -Xms128m -Xmx128m switches to java to get enough memory for AI to search through all necessary nodes.