Trait Predictions
pub trait Predictions: Default {
// Required methods
fn squared_error(&self) -> f64;
fn get_predictions(&self) -> Vec<Prediction>;
// Provided method
fn new(_nparticles: usize) -> Self { ... }
}
Expand description
Trait for prediction containers.
Required Methods§
fn squared_error(&self) -> f64
fn squared_error(&self) -> f64
fn get_predictions(&self) -> Vec<Prediction>
fn get_predictions(&self) -> Vec<Prediction>
Provided Methods§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementations on Foreign Types§
§impl Predictions for ArrayBase<OwnedRepr<Prediction>, Dim<[usize; 2]>>
Predictions implementation for particle-based SDE simulation outputs.
impl Predictions for ArrayBase<OwnedRepr<Prediction>, Dim<[usize; 2]>>
Predictions implementation for particle-based SDE simulation outputs.
This implementation manages and processes predictions from multiple particles.