rlevo-environments 0.1.0

RL benchmark environments and landscapes for rlevo (internal crate — use `rlevo` for the full API)
Documentation
1
2
3
4
5
6
7
8
9
//! Environment wrappers that augment existing environments without modifying them.
//!
//! The only wrapper currently shipped is [`TimeLimit`], which truncates episodes
//! after a configurable step cap. More wrappers (frame-stacking, observation
//! normalization, reward clipping) may be added incrementally.

pub mod time_limit;

pub use time_limit::TimeLimit;