gymnasia 3.0.5

OpenAI Gymnasium environments in pure Rust
Documentation
1
2
3
4
5
6
use ordered_float::OrderedFloat;

/// The standard float type used internally by environments.
///
/// Wraps `f64` to provide `Ord` + `Eq` (which raw `f64` lacks due to NaN).
pub type O64 = OrderedFloat<f64>;