Struct gym_rs::PendulumEnv[][src]

pub struct PendulumEnv { /* fields omitted */ }

Description: The inverted pendulum swingup problem is a classic problem in the control literature. In this version of the problem, the pendulum starts in a random position, and the goal is to swing it up so it stays upright.

Source: OpenAI’s Gym Python implementation

Observation Num Observation Min Max 0 Cosine of theta -1.0 1.0 1 Sine of theta -1.0 1.0 2 pendulum velocity -Inf Inf

Actions: Continuous action in range [-max_torque, max_torque] = [-2.0, 2.0]

Trait Implementations

impl Debug for PendulumEnv[src]

impl Default for PendulumEnv[src]

impl GymEnv for PendulumEnv[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> SetParameter for T

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,