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

/// UCI connector
pub mod cmd;

/// Chess engine
pub mod engine;

/// Helpers
pub mod misc;