mnemo_core/eval/mod.rs
1//! Evaluation harnesses that exercise the engine in shapes the
2//! integration test suite + bench bins reuse.
3//!
4//! Today this module hosts a single harness, [`memfail`], which
5//! decomposes each end-to-end recall into the three operation seams
6//! mnemo actually exposes (store / summarize / retrieve) so that an
7//! observed failure can be attributed to one stage instead of the
8//! whole pipeline.
9
10pub mod memfail;