Skip to content

Latest commit

 

History

History
5 lines (5 loc) · 361 Bytes

README.md

File metadata and controls

5 lines (5 loc) · 361 Bytes

Gomoku-Players

Implementation of 3 Search based players for the game of Gomoku:

  • Random Player - Chooses next move randomly
  • Flat Monte-Carlo Player - Chooes next move by conducting a 1-ply search over all the legal moves
  • MCTS based player - Chooses next move by using the Monte-Carlo tree search algorithm with random rollouts and UCB Tree Policy.