Struct vrp_core::algorithms::mdp::ActionEstimates [−][src]
pub struct ActionEstimates<S: State> { /* fields omitted */ }
Expand description
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]
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]
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]
pub fn weighted(&self, random: &(dyn Random + Send + Sync)) -> Option<S::Action>[src]Returns an action based on its estimate interpreted as weight.
Trait Implementations
impl<S: State> Clone for ActionEstimates<S>[src]
impl<S: State> Clone for ActionEstimates<S>[src]impl<S: State> Default for ActionEstimates<S>[src]
impl<S: State> Default for ActionEstimates<S>[src]Auto Trait Implementations
impl<S> RefUnwindSafe for ActionEstimates<S> where
<S as State>::Action: RefUnwindSafe,
<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,
<S as State>::Action: Unpin,
impl<S> UnwindSafe for ActionEstimates<S> where
<S as State>::Action: UnwindSafe,
<S as State>::Action: UnwindSafe,
Blanket Implementations
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]pub fn borrow_mut(&mut self) -> &mut T[src]
pub fn borrow_mut(&mut self) -> &mut T[src]Mutably borrows from an owned value. Read more
impl<T> Pointable for T
impl<T> Pointable for Timpl<T> ToOwned for T where
T: Clone, [src]
impl<T> ToOwned for T where
T: Clone, [src]type Owned = T
type Owned = TThe resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn to_owned(&self) -> T[src]Creates owned data from borrowed data, usually by cloning. Read more
pub fn clone_into(&self, target: &mut T)[src]
pub fn clone_into(&self, target: &mut T)[src]🔬 This is a nightly-only experimental API. (toowned_clone_into)
recently added
Uses borrowed data to replace owned data, usually by cloning. Read more
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,