PraxTube / chess-ai

A chess AI that uses alpha-beta to find the best move
MIT License
0 stars 1 forks source link

Engine: Improve board setup from fen #48

Closed PraxTube closed 1 year ago

PraxTube commented 1 year ago

Currently, we simply set checkmate=False (as well as stalemate and in_check). It would be much better if we actually calculate if that is the case. Though this has absolutely no influence on the actual engine in the end. It would however improve the quality of tests.

PraxTube commented 1 year ago

This was added in #50.