samuelemusiani / project_37635

A program made to play a generalized version of connect 4 perfectly
GNU General Public License v3.0
1 stars 0 forks source link

BitBoard rappresentation for the small (<= 7x7) games #2

Closed samuelemusiani closed 1 year ago

samuelemusiani commented 1 year ago

A faster way to represent the board in small games that can check if a move is winning in consta time. This should speed up the search. For large board we stick to normal CXBoard class

https://towardsdatascience.com/creating-the-perfect-connect-four-ai-bot-c165115557b0

samuelemusiani commented 1 year ago

Done