Skip to content

KuhakuPixel/TempestPixyEngine

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TempestPixyEngine

  • A simple chess engine (under 3000 lines ) written in c++ which is easy and simple to read / understand
  • Uses Minimax and alphabeta pruning to search and evaluate the current position

Playing with TempestPixyEngine

this engine can be played here (Make sure that you are signed in)

Compiling

Build the project using python (at least version 3.0)

 python3 build.py

Run unit tests with

python3 build.py test

TODO:

  • use cmake to build the project
  • use google benchmark to test performance
  • Improve performance
  • planning to make this into a simple machine learning framework for board and zero sum games

Deploying Engine to lichess.org

Credits