Skip to main content

thrust_rl/buffer/
mod.rs

1//! Experience buffers and replay management
2//!
3//! This module handles storage and sampling of experience for training.
4
5pub mod replay;
6pub mod rollout;
7
8// Convenience re-export so multi-agent training scripts can pull the
9// flat-buffer GAE helper directly off `thrust_rl::buffer`. Single-agent
10// users continue to call `RolloutBuffer::compute_advantages`.
11pub use rollout::compute_advantages_multi_agent;