Skip to content

Latest commit

 

History

History
11 lines (9 loc) · 391 Bytes

README.md

File metadata and controls

11 lines (9 loc) · 391 Bytes

minimax-chess-cpp

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