Jan 1, 2025
1 min read
Stargaze
This project is a fully fleshed-out chess engine that I’m trying to create.

For some time, I’ve been working on creating a chess engine that can actually beat my 1200-eloed friend and also me.
I’m using bit boards to represent the board and the pieces. I’m following the alpha-beta algorithm with multiple optimisations, ranging from transposition tables and iterative deepening, with a heuristic move generator.
- See the repo: https://github.com/mkutay/stargaze
§