pub trait VariableStep<T = Time> {
// Required methods
fn abs_tol(&self) -> Scalar;
fn rel_tol(&self) -> Scalar;
fn dt_beta(&self) -> Scalar;
fn dt_expn(&self) -> Scalar;
fn dt_cut(&self) -> Scalar;
fn dt_grow(&self) -> Scalar;
fn dt_min(&self) -> Quantity<T>;
fn error_norm(&self) -> &Norm;
}Expand description
Variable-step integrators for ordinary differential equations.
Required Methods§
Sourcefn error_norm(&self) -> &Norm
fn error_norm(&self) -> &Norm
Returns the norm type for error evaluation.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".