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 contracts;
14pub mod correctness;
15pub mod dataset;
16pub mod head_to_head;
17pub mod metrics;
18pub mod reference;
19pub mod report;
20pub mod stability;