[][src]Struct lfa::basis::TileCoding

pub struct TileCoding<H> { /* fields omitted */ }

Generalised tile coding scheme with hashing.

Implementations

impl<H: BuildHasher> TileCoding<H>[src]

pub fn new(hasher_builder: H, n_tilings: usize, memory_size: usize) -> Self[src]

Trait Implementations

impl<'a, T, H> Basis<T> for TileCoding<H> where
    T: IntoIterator<Item = &'a f64>,
    H: BuildHasher
[src]

impl<H: Clone> Clone for TileCoding<H>[src]

impl<H: BuildHasher> Combinators for TileCoding<H>[src]

impl<H: Debug> Debug for TileCoding<H>[src]

impl<'a, T, H> EnumerableBasis<T> for TileCoding<H> where
    T: IntoIterator<Item = &'a f64>,
    H: BuildHasher
[src]

impl<H: PartialEq> PartialEq<TileCoding<H>> for TileCoding<H>[src]

impl<H> Space for TileCoding<H>[src]

type Value = Features

The data representation of the space.

impl<H> StructuralPartialEq for TileCoding<H>[src]

Auto Trait Implementations

impl<H> RefUnwindSafe for TileCoding<H> where
    H: RefUnwindSafe

impl<H> Send for TileCoding<H> where
    H: Send

impl<H> Sync for TileCoding<H> where
    H: Sync

impl<H> Unpin for TileCoding<H> where
    H: Unpin

impl<H> UnwindSafe for TileCoding<H> where
    H: 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> From<T> for T[src]

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

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.