Computers Playing Games
Go to file
Mattia Giambirtone 0dfd647f4c Make test suite optionally parallel. Many bug fixes 2024-04-23 01:50:56 +02:00
Chess Make test suite optionally parallel. Many bug fixes 2024-04-23 01:50:56 +02:00
ConnectFour/src Refactor directory structure. Fix magic bitboard generation and add utilities to dump them to disk 2024-04-19 13:40:58 +02:00
TicTacToe/src Refactor directory structure. Fix magic bitboard generation and add utilities to dump them to disk 2024-04-19 13:40:58 +02:00
.gitignore Add nim.cfg and various bugfixes to movegen 2024-04-21 15:58:31 +02:00
LICENSE Initial commit 2023-01-11 14:24:32 +01:00
README.md Refactor directory structure. Fix magic bitboard generation and add utilities to dump them to disk 2024-04-19 13:40:58 +02:00

README.md

CPG - Computers playing games

A silly project going down the rabbithole of making the pinnacle of human advancement in semiconductor technology smart enough to play tic tac toe.

Plans

  • Tic Tac Toe (optimal) -> Done
  • Connect 4 (optinal)
  • Checkers (optimal?)
  • Chess -> WIP

All of these games will be played using decision trees searched using the minimax algorithm or variations thereof (maybe a bit of neural networks too, who knows). Ideally I'd like to implement a bunch of stuff such as move reordering, alpha-beta pruning and transpositions in order to improve both processing time and decision quality. Very much WIP.