bitstackchess 0.1.1

A bitboard‐based chess game engine with 10 × u128 move history
Documentation
1
2
3
4
5
6
7
8
//! Core bit‐storage primitives: Move10 and MovePlanes.
//! These types know only about 10-bit moves and how to pack/unpack them into 128-bit planes.

pub mod move10;
pub mod move_planes;

pub use move10::Move10;
pub use move_planes::MovePlanes;