Struct vrp_core::algorithms::mdp::ActionEstimates[][src]

pub struct ActionEstimates<S: State> { /* fields omitted */ }

Keeps track of action estimation.

Implementations

impl<S: State> ActionEstimates<S>[src]

pub fn insert(&mut self, action: <S as State>::Action, estimate: f64)[src]

Sets estimate for given action. Min-Max values are not updated and require a recalculate_min_max call.

pub fn recalculate_min_max(&mut self)[src]

Recalculates min max values.

pub fn weighted(&self, random: &(dyn Random + Send + Sync)) -> Option<S::Action>[src]

Returns an action based on its estimate interpreted as weight.

pub fn random(&self, random: &(dyn Random + Send + Sync)) -> Option<S::Action>[src]

Gets random action.

pub fn max_estimate(&self) -> Option<(<S as State>::Action, f64)>[src]

Returns a max estimate.

pub fn min_estimate(&self) -> Option<(<S as State>::Action, f64)>[src]

Returns a min estimate.

pub fn data(&self) -> &HashMap<S::Action, f64>[src]

Returns actual action estimates data.

Trait Implementations

impl<S: State> Clone for ActionEstimates<S>[src]

impl<S: State> Default for ActionEstimates<S>[src]

impl<S: State> From<HashMap<<S as State>::Action, f64, RandomState, Global>> for ActionEstimates<S>[src]

Auto Trait Implementations

impl<S> RefUnwindSafe for ActionEstimates<S> where
    <S as State>::Action: RefUnwindSafe

impl<S> Send for ActionEstimates<S>

impl<S> Sync for ActionEstimates<S>

impl<S> Unpin for ActionEstimates<S> where
    <S as State>::Action: Unpin

impl<S> UnwindSafe for ActionEstimates<S> where
    <S as State>::Action: 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> Pointable for T

type Init = T

The type for initializers.

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