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]
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> Clone for ActionEstimates<S>[src]fn clone(&self) -> Self[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
Auto Trait Implementations
impl<S> RefUnwindSafe for ActionEstimates<S> where
<S as State>::Action: RefUnwindSafe,
impl<S> RefUnwindSafe for ActionEstimates<S> where
<S as State>::Action: RefUnwindSafe, impl<S> Send for ActionEstimates<S>
impl<S> Send for ActionEstimates<S>impl<S> Sync for ActionEstimates<S>
impl<S> Sync for ActionEstimates<S>impl<S> Unpin for ActionEstimates<S> where
<S as State>::Action: Unpin,
impl<S> Unpin for ActionEstimates<S> where
<S as State>::Action: Unpin, impl<S> UnwindSafe for ActionEstimates<S> where
<S as State>::Action: UnwindSafe,
impl<S> UnwindSafe for ActionEstimates<S> where
<S as State>::Action: UnwindSafe,