1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
#![deny(missing_docs, missing_crate_level_docs)]

//! The gym-rs crate is a pure rust implementation of OpenAI's Gym

#[macro_use]
extern crate log;

mod action_type;
mod cart_pole;
mod gif_render;
mod gym_env;
mod mountain_car;
mod pendulum;
mod utils;

pub use action_type::ActionType;
pub use cart_pole::CartPoleEnv;
pub use gif_render::GifRender;
pub use gym_env::GymEnv;
pub use mountain_car::MountainCarEnv;
pub use pendulum::PendulumEnv;
pub use utils::scale;