pub trait ButcherTableau {
const STAGES: usize;
const ORDER: Scalar;
const A: &'static [&'static [Scalar]];
const C: &'static [Scalar];
const B: &'static [Scalar];
const FSAL: bool = false;
}Expand description
Butcher tableau for an explicit Runge–Kutta method.
Required Associated Constants§
Provided Associated Constants§
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".