pub struct Solver {
pub name: &'static str,
pub order: usize,
pub c: Vec<f64>,
pub a: Vec<Vec<f64>>,
pub b: Vec<f64>,
pub b_hat: Vec<f64>,
}Expand description
An ODE solver method defined by its Butcher tableau.
Fields§
§name: &'static str§order: usize§c: Vec<f64>§a: Vec<Vec<f64>>§b: Vec<f64>§b_hat: Vec<f64>Trait Implementations§
Auto Trait Implementations§
impl Freeze for Solver
impl RefUnwindSafe for Solver
impl Send for Solver
impl Sync for Solver
impl Unpin for Solver
impl UnsafeUnpin for Solver
impl UnwindSafe for Solver
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more