Chess engine: Mida 2.1
This project is a chess engine called "Mida" built entirely in C++. The engine is built to work with UCI (Universal Chess Interface), and you can easily find all the commands online.
Rating CEDR=2563
v2.1:
Mate distance pruning
Late move pruning
Futility pruning
SEE (static exchange evaluation) for move ordering as well as pruning techniques
Fixed bug in history moves
Use of transposition table's evaluation also when we don't return it straight away, meaning we can use the stored eval instead of the NNUE eval of the position. We do this because the tt eval is more accurate, since it comes from a search and not a simple positional evaluation.
Comments
Post a Comment