Common Solver Options (Solve Keyword Arguments)
abstol::Number
: The absolute tolerance. Defaults to1e-6
.adaptive::Bool
: Whether the error control adaptivity is on, default astrue
.controller
: Error controller for collocation methods, default asDefectControl()
, more controller options in Error Control Adaptivity.defect_threshold
: Monitor of the size of defect norm. Defaults to0.1
.odesolve_kwargs
: OrdinaryDiffEq.jl solvers kwargs for passing to ODE solving in shooting methods. For more information, see the documentation for OrdinaryDiffEq: Common Solver Options.nlsolve_kwargs
: NonlinearSolve.jl solvers kwargs for passing to nonlinear solving in collocation methods and shooting methods. For more information, see the documentation for NonlinearSolve: Commom Solver Options. The default absolute tolerance of nonlinear solving in collocaioverbose
: Toggles whether warnings are thrown when the solver exits early. Defaults totrue
.ensemblealg
: WhetherMultipleShooting
uses multithreading, default asEnsembleThreads()
. For more information, see the documentation for OrdinaryDiffEq: EnsembleAlgorithms.