Bitboard

Bitboards in Rust.

Build Status Coverage Status

Summary

Bitboards are a datastructure used in various sorts of boardgame AI to represent boardgame state. Their primary appeal is that they are cache conscious and primarily interacted with via simple binary logic operations (AND, OR, NOT, etc), and thus most operations translate to very few instructions, and usually just the same instruction executed repeatedly. This means they're very very fast.

The Bitboards in this project are implemented in Rust as contiguous chunks of memory. Size is statically determined via the type system (using the typenum library.

What this means practically is two things.

  1. You will get every bit of that delicious cache consciousness.
  2. You will have compile-time guarantee's that when combining two bitboards, the combination is valid inasmuch as bitboard sizes are concerned.

What's in this Repo

What's not in this repo

What I think would be cool in this repo