Skip to main content

lean_ctx/core/context_prefetch/
mod.rs

1//! Predictive Context Prefetch (F2) — trajectory-based preloading.
2//!
3//! Unifies predictive prefetch, FEP prefetch, and active inference into a
4//! coherent prefetch pipeline with trajectory prediction.
5
6mod preloader;
7mod trajectory;
8mod warming;
9
10pub use preloader::PrefetchPlan;
11#[cfg(test)]
12pub(crate) use preloader::build_prefetch_plan;
13pub(crate) use trajectory::FileTrajectory;
14pub(crate) use warming::{skipped_count, warm_predictions, warmed_count};