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
//! Renderers for `rlevo-environments` environments.
//!
//! The primary renderer is [`ascii::AsciiRenderer`], which produces
//! `String` frames for classic-control and toy-text environments.
//! Use [`rlevo_core::render::NullRenderer`] when rendering is not needed.
pub mod ascii;

pub use ascii::{AsciiRenderable, AsciiRenderer};