ocelot-chess 0.1.0

A simple(ish) chess engine written entirely in Rust with no dependencies.
1
2
3
4
5
6
7
8
//!# evaluation
//!This module holds code to evaluate the current board and choose the best move. This includes
//!search and static eval.

mod heuristic;
mod search;

pub use search::SearchTree;