Skip to content

Latest commit

 

History

History
5 lines (3 loc) · 522 Bytes

README.md

File metadata and controls

5 lines (3 loc) · 522 Bytes

#othello

####An Othello AI written in C++

The game of Othello is played with black and white disks as documented on Wikipedia. This project is a command line (ASCII) version of the game. The AI for the game implements a minimax A* Search with iterative deepening. The heuristic function for the game accounts for the number of pieces, edge count, corners, mobility, and frontier pieces.