Trait vrp_core::algorithms::mdp::LearningStrategy [−][src]
pub trait LearningStrategy<S: State> {
fn value(
&self,
reward_value: f64,
old_value: f64,
estimates: &ActionEstimates<S>
) -> f64;
}Expand description
A learning strategy for the MDP.