This project implements the minimax algorithm with alpha-beta pruning for the game of TicTacToe (also known as OXO or Noughts and Crosses) in Java.
Example of board state:
X | O | X
-----------
| X | O
-----------
O | | X
Main class: appli/TicTacToeGame.java
evaluate method in Situation.java and/or values in SpecialSituations.java))