c4_e5_chess/
lib.rs

1//! `C4-E5 Chess` is a UCI compatible chess engine based on the move generator in crate Chess.
2//!
3//! These features are provided:
4//! * Parallelised iterative depthening
5//! * Late move pruning
6//! * Principal variant search
7//! * Transposition table
8
9/// UCI connector
10pub mod cmd;
11
12/// Chess engine
13pub mod engine;
14
15/// Board evaluation
16pub mod eval;
17
18/// Helpers
19pub mod misc;