• Stars
    star
    3
  • Rank 3,947,621 (Top 79 %)
  • Language
    Java
  • License
    MIT License
  • Created about 8 years ago
  • Updated about 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Tic Tac Toe with a perfect play AI (Minimax). The AI evaluates all possible positions once, and then later uses a hash table to look up score/best move for a certain position. The game uses two bitboards to represent the board and bit operations to perform operations such as move, undo move, get legal moves etc (see: https://en.wikipedia.org/wiki/Bitboard). The game has a graphical user interface.