gmgn 0.4.3

A reinforcement learning environments library for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Box2D-based environments requiring the `box2d` feature.
//!
//! These environments use the [`box2d-rs`](https://crates.io/crates/box2d-rs)
//! pure-Rust port of the `Box2D` physics engine.

mod bipedal_walker;
mod lunar_lander;

pub use bipedal_walker::{BipedalWalkerConfig, BipedalWalkerEnv};
pub use lunar_lander::{LunarLanderConfig, LunarLanderEnv};