Extension Default

Index

Warning

In the examples in the documentation below, the methods are not prefixed by the module name even if they are private.

julia> using CTFlows
julia> x = 1
julia> private_fun(x) # throw an error

must be replaced by

julia> using CTFlows
julia> x = 1
julia> CTFlows.private_fun(x)

However, if the method is reexported by another package, then, there is no need of prefixing.

julia> module OptimalControl
           import CTFlows: private_fun
           export private_fun
       end
julia> using OptimalControl
julia> x = 1
julia> private_fun(x)

Documentation

CTFlowsODE.__abstolMethod
__abstol() -> Float64

Default absolute tolerance for ODE solvers.

See abstol from DifferentialEquations.

source
CTFlowsODE.__algMethod
__alg(

) -> Tsit5{typeof(OrdinaryDiffEqCore.trivial_limiter!), typeof(OrdinaryDiffEqCore.trivial_limiter!), Static.False}

Default algorithm for ODE solvers.

See alg from DifferentialEquations.

source
CTFlowsODE.__reltolMethod
__reltol() -> Float64

Default relative tolerance for ODE solvers.

See reltol from DifferentialEquations.

source