pounce 2.0.2

A mediocre (but trying its best) uci chess engine
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod chess;
pub mod engine;

#[cfg(feature = "datagen")]
pub mod datagen;

use crate::chess::movegen;
use crate::chess::position::zobrist;
#[cfg(feature = "datagen")]
pub use crate::datagen::format::{CompressedGame, Wdl};
use crate::engine::search;

pub fn init() {
    movegen::init_tables();
    zobrist::init_zobrist();
    search::init_reductions();
}