Skip to main content

quantik_core/bench/
mod.rs

1//! Cross-engine benchmark harness (port of the Python `benchmarks/` package).
2//!
3//! Compares the minimax, MCTS, beam-search, and uniform-random engines on a
4//! shared, versioned, checksummed position dataset under methodologically
5//! consistent conditions. See `docs/BENCHMARKS.md`.
6
7pub mod adapters;
8pub mod agreement;
9pub mod book_export;
10pub mod bundle;
11pub mod canonical;
12pub mod checkpoint;
13pub mod correctness;
14pub mod dataset;
15pub mod head_to_head;
16pub mod metrics;
17pub mod reference;
18pub mod report;
19pub mod stability;