Writing a BitBoard in Rust Pt. 2: The Game State

2021-09-14

Now that we have a bitboard to store the pieces, we need a way to store the game state

#bitboard #chess #rust

Writing a BitBoard in Rust Pt. 1: The Basics

2021-08-23

BitBoards are used in the fastest chess engines on the market. So how do they work? And how do we implement them?

#bitboard #chess #rust