1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//! pack-brain — profile-oriented Bayesian auto-tuning for khive. pub mod event; pub mod fold; pub mod handlers; pub mod persist; pub mod section; pub mod state; pub mod tunable; mod pack; pub(crate) use pack::sync_balanced_recall_record; pub use pack::{BrainPack, ENTITY_CACHE_CAPACITY}; #[cfg(test)] mod tests;