Skip to main content

smelt_memory/utility/
mod.rs

1//! Utility calculation algorithms for episode ranking
2//!
3//! Ported from MemRL with adaptations for Smelt's needs.
4
5mod bellman;
6mod decay;
7mod ranker;
8mod wilson;
9
10pub use bellman::{bellman_propagate, temporal_credit_assignment, PropagationResult};
11pub use decay::{apply_decay, DecayParams};
12pub use ranker::UtilityRanker;
13pub use wilson::wilson_score;