Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 309 Bytes

README.md

File metadata and controls

12 lines (10 loc) · 309 Bytes

reversi-ai

A NegaMax AI that plays Reversi (Othello).

This is a simple AI written in Python that uses NegaMax with Alpha-Beta pruning to play Reversi.

Possible additions:

  • Better evaluation function
  • Move ordering
  • Multithreading
  • NegaScout instead of NegaMax
  • Transposition table
  • Selective search