Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 550 Bytes

README.md

File metadata and controls

32 lines (23 loc) · 550 Bytes

Gomoku

Concept

An AI and game interface to play Gomoku, a game played on a Go board, somewhat similar to a more complex version of connect-4.

Subject

Dependencies

sfml boost

Building

mkdir build
cd build
cmake ..
make
cd ..
./build/gomoku

Todo

  • only show greenscreen when necessary
  • getNextMove returns pos vector, and play chooses
  • display real suggestions instead of heatmap
  • negamax, negamax_thread (and maybe start_negamax) should all be static
  • more documentation
  • remove boost dependency