/OrionChessEngine

My submission for the Tiny Chess Bots coding challenge

Primary LanguageC#MIT LicenseMIT

OrionChessEngine

This my submission for the Tiny Chess Bots coding challenge.

Interesting Stuff

MiniMax vs NegaMax

I started of using MiniMax but switched to NegaMax because it was easier to implement/read but also used a lot less tokens.

Read about it here.

Piece-Square Tables

Because of the 1024 token limit the use of piece-square tables was out of the question, or so I thought.

I ended up encoding the 6 piece-square tables into a single array using some bit shifting.

Read about it here.

Quiescence Search

The bot was constantly blundering pieces so I've added Quiescence Search to try and avoid this.

Read about it here.

Aspiration Windows

I've also added Aspiration Windows to try and improve the search speed. I went from depth=4-6 to depth=5-8.

Read about it here.