bitstackchess 0.1.1

A bitboard‐based chess game engine with 10 × u128 move history
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// src/engine/mod.rs

pub mod engine_trait;
pub mod game_core;
pub mod move_generator;
pub mod evaluator;
pub mod zobrist;
pub mod transposition_table;

// Re-export minimal public API:
pub use engine_trait::ChessEngine;
pub use game_core::GameCore;