timecat 1.52.0

A NNUE-based chess engine that implements the Negamax algorithm and can be integrated into any project as a library. It features move generation, advanced position evaluation through NNUE, and move searching capabilities.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod book_hashmap;
#[cfg(feature = "experimental")]
pub mod book_mmap_reader;
pub mod book_reader;
pub mod utils;

use super::*;
pub use book_hashmap::*;
#[cfg(feature = "experimental")]
pub use book_mmap_reader::*;
pub use book_reader::*;
use utils::*;