Skip to main content

hippmem_write/
lib.rs

1//! HIPPMEM · Write engine
2//!
3//! Responsible for AssociationKeys generation, multi-dimensional candidate
4//! discovery, association scoring, and edge construction.
5//! Corresponds to algorithm parameters in 03.
6
7pub mod candidates;
8pub mod edges;
9pub mod enrich;
10pub mod explain;
11pub mod keys;
12pub mod scoring;
13pub mod staged;
14pub mod understanding;