Trait au::linear_system::solver::Rkf45Const[][src]

pub trait Rkf45Const where
    Self: Copy + Sized
{ const A: [Self; 4]; const B21: Self; const B3: [Self; 2]; const B4: [Self; 3]; const B5: [Self; 4]; const B6: [Self; 5]; const C: [Self; 4]; const D: [Self; 5]; const SAFETY_FACTOR: Self; const EXP: [Self; 2]; }

Trait that defines the constants used in the Rkf45 solver.

Associated Constants

const A: [Self; 4][src]

A

const B21: Self[src]

B21

const B3: [Self; 2][src]

B3

const B4: [Self; 3][src]

B4

const B5: [Self; 4][src]

B5

const B6: [Self; 5][src]

B6

const C: [Self; 4][src]

C

const D: [Self; 5][src]

D

const SAFETY_FACTOR: Self[src]

Safety factor to avoid too small step changes.

const EXP: [Self; 2][src]

Error ratio exponents.

Loading content...

Implementations on Foreign Types

impl Rkf45Const for f32[src]

impl Rkf45Const for f64[src]

Loading content...

Implementors

Loading content...