[][src]Module diffeq::ode::options

Structs

Abstol

An integration step is accepted if E <= abstol

AdaptiveOptions
AdaptiveOptionsBuilder

Builder for AdaptiveOptions.

Initstep

Initial integration step.

Maxstep

Maximal integration step.

Minstep

Minimal integration step.

Norm

user defined norm for determining the error

OdeOptionMap
Reltol

An integration step is accepted if E <= reltol*abs(y)

Retries

Sometimes an integration step takes you out of the region where F(t,y) has a valid solution and F might result in an error. retries sets a limit to the number of times the solver might try with a smaller step.

StepTimeout

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

Enums

OdeOption

All available Ode options

Points

Traits

OdeOp