A chess AI made using the minimax algorithm with alpha-beta pruning and negamax optimisations.
- Set to a default search depth of 6 (moves ahead)
- Made using the Win32 API in mingw C++
Can be compiled using the following instructions:
windres resource.rc -O coff -o resource.o
g++ main.cpp chess.cpp resource.o -mwindows -lgdiplus