[][src]Struct ggpf::policies::nrpa::NRPA

pub struct NRPA<G: Singleplayer, M: MoveCode<G>> { /* fields omitted */ }

Nested Rollout Policy Adaptation policy builder.

Methods

impl<G: Singleplayer, M: MoveCode<G>> NRPA<G, M>[src]

pub fn new(N: usize, level: usize, alpha: f32) -> Self[src]

Instanciate a new policy builder for NRPA

Params

  • N: number of calls per level.
  • level: nesting level.
  • alpha: policy gradient multiplier.

Trait Implementations

impl<G: Singleplayer, M: MoveCode<G>> Clone for NRPA<G, M>[src]

impl<G: Singleplayer, M: MoveCode<G>> Copy for NRPA<G, M>[src]

impl<G: Singleplayer, M: MoveCode<G>> Default for NRPA<G, M>[src]

impl<G: Singleplayer + Clone, M: MoveCode<G> + Send> SingleplayerPolicyBuilder<G> for NRPA<G, M>[src]

type P = NRPAPolicy<G, M>

Single player policy type.

Auto Trait Implementations

impl<G, M> RefUnwindSafe for NRPA<G, M> where
    G: RefUnwindSafe,
    M: RefUnwindSafe

impl<G, M> Send for NRPA<G, M>

impl<G, M> Sync for NRPA<G, M>

impl<G, M> Unpin for NRPA<G, M> where
    G: Unpin,
    M: Unpin

impl<G, M> UnwindSafe for NRPA<G, M> where
    G: UnwindSafe,
    M: UnwindSafe

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> Erased for T

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

impl<T> FromPy<T> for T

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

impl<T, U> IntoPy<U> for T where
    U: FromPy<T>, 

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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>, 

impl<T> With for T