[][src]Struct diffeq::ode::options::AdaptiveOptions

pub struct AdaptiveOptions {
    pub minstep: Option<Minstep>,
    pub maxstep: Option<Maxstep>,
    pub initstep: Initstep,
    pub points: Points,
    pub reltol: Reltol,
    pub abstol: Abstol,
    pub norm: Norm,
    pub step_timeout: StepTimeout,
}

Fields

minstep: Option<Minstep>

Minimal integration step.

maxstep: Option<Maxstep>

Maximal integration step.

initstep: Initstep

Initial integration step.

points: Points

Defaults to Points::All output is given for each value in tspan as well as for each intermediate point the solver used.

reltol: Reltol

An integration step is accepted if E <= reltol*abs(y) defaults to 1e-5

abstol: Abstol

An integration step is accepted if E <= abstol defaults to 1e-8

norm: Norm

User-supplied norm for determining the error.

step_timeout: StepTimeout

User defined timeout after which step reduction should not increase step for timeout controlled steps.

Methods

impl AdaptiveOptions[src]

pub fn builder() -> AdaptiveOptionsBuilder[src]

convenience method to create a new builder

Trait Implementations

impl Clone for AdaptiveOptions[src]

impl Debug for AdaptiveOptions[src]

impl Default for AdaptiveOptions[src]

impl<'_> From<&'_ OdeOptionMap> for AdaptiveOptions[src]

impl From<OdeOptionMap> for AdaptiveOptions[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,