pub trait InterpolateSolution<Y, U>where
Y: Tensor,
for<'a> &'a Y: Mul<Scalar, Output = Y> + Sub<&'a Y, Output = Y>,
U: TensorVec<Item = Y>,{
// Required method
fn interpolate(
&self,
time: &Vector,
tp: &Vector,
yp: &U,
function: impl FnMut(Scalar, &Y) -> Result<Y, String>,
) -> Result<(U, U), IntegrationError>;
}Expand description
Solution interpolation schemes.
Required 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.