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

pub struct AdaptiveOptionsBuilder { /* fields omitted */ }

Builder for AdaptiveOptions.

Methods

impl AdaptiveOptionsBuilder[src]

pub fn minstep<VALUE: Into<Minstep>>(&mut self, value: VALUE) -> &mut Self[src]

Minimal integration step.

pub fn maxstep<VALUE: Into<Maxstep>>(&mut self, value: VALUE) -> &mut Self[src]

Maximal integration step.

pub fn initstep<VALUE: Into<Initstep>>(&mut self, value: VALUE) -> &mut Self[src]

Initial integration step.

pub fn points<VALUE: Into<Points>>(&mut self, value: VALUE) -> &mut Self[src]

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

pub fn reltol<VALUE: Into<Reltol>>(&mut self, value: VALUE) -> &mut Self[src]

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

pub fn abstol<VALUE: Into<Abstol>>(&mut self, value: VALUE) -> &mut Self[src]

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

pub fn norm<VALUE: Into<Norm>>(&mut self, value: VALUE) -> &mut Self[src]

User-supplied norm for determining the error.

pub fn step_timeout<VALUE: Into<StepTimeout>>(
    &mut self,
    value: VALUE
) -> &mut Self
[src]

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

pub fn build(&self) -> Result<AdaptiveOptions, String>[src]

Builds a new AdaptiveOptions.

Errors

If a required field has not been initialized.

Trait Implementations

impl Clone for AdaptiveOptionsBuilder[src]

impl Default for AdaptiveOptionsBuilder[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>,