Skip to main content

RadauConst

Trait RadauConst 

Source
pub trait RadauConst
where Self: Copy + Sized,
{ const RADAU_A: [Self; 4]; const RADAU_B: [Self; 2]; const RADAU_C: [Self; 2]; const RADAU_ABS_TOL: Self; }
Expand description

Trait that defines the constants used in the Radau solver.

Required Associated Constants§

Source

const RADAU_A: [Self; 4]

A

Source

const RADAU_B: [Self; 2]

B

Source

const RADAU_C: [Self; 2]

C

Source

const RADAU_ABS_TOL: Self

Absolute tolerance for equality comparisons.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety".

Implementations on Foreign Types§

Source§

impl RadauConst for f32

Source§

const RADAU_A: [Self; 4]

Source§

const RADAU_B: [Self; 2]

Source§

const RADAU_C: [Self; 2]

Source§

const RADAU_ABS_TOL: Self = 0.001

Source§

impl RadauConst for f64

Source§

const RADAU_A: [Self; 4]

Source§

const RADAU_B: [Self; 2]

Source§

const RADAU_C: [Self; 2]

Source§

const RADAU_ABS_TOL: Self = 0.001

Implementors§