Skip to main content

kaizen/retro/
mod.rs

1// SPDX-License-Identifier: AGPL-3.0-or-later
2//! Heuristic retro engine (M5): pure ranking + IO at boundaries.
3
4pub mod engine;
5pub mod heuristics;
6pub mod inputs;
7pub mod scheduler;
8pub mod types;
9
10pub use engine::run;
11pub use inputs::{load_inputs, prior_bet_fingerprints};
12pub use types::{Bet, Inputs, Report};