diff --git a/src/problems/rode_problems.jl b/src/problems/rode_problems.jl index 61e46bb67..8fd567bd9 100644 --- a/src/problems/rode_problems.jl +++ b/src/problems/rode_problems.jl @@ -26,7 +26,7 @@ to numbers or vectors for `u₀`; one is allowed to provide `u₀` as arbitrary `isinplace` optionally sets whether the function is inplace or not. This is determined automatically, but not inferred. `specialize` optionally controls the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels) - for more details. The default is `AutoSpecialize. + for more details. The default is `AutoSpecialize`. For more details on the in-place and specialization controls, see the ODEFunction documentation. diff --git a/src/problems/sdde_problems.jl b/src/problems/sdde_problems.jl index 5b313326f..75c66679b 100644 --- a/src/problems/sdde_problems.jl +++ b/src/problems/sdde_problems.jl @@ -70,7 +70,7 @@ SDDEProblem{isinplace,specialize}(f,g[, u0], h, tspan[, p]; ) `isinplace` optionally sets whether the function is inplace or not. This is determined automatically, but not inferred. `specialize` optionally controls the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels) -for more details. The default is `AutoSpecialize. +for more details. The default is `AutoSpecialize`. For more details on the in-place and specialization controls, see the ODEFunction documentation. diff --git a/src/problems/sde_problems.jl b/src/problems/sde_problems.jl index 622373778..231d4d0f4 100644 --- a/src/problems/sde_problems.jl +++ b/src/problems/sde_problems.jl @@ -41,7 +41,7 @@ with initial condition `u0`. `isinplace` optionally sets whether the function is inplace or not. This is determined automatically, but not inferred. `specialize` optionally controls the specialization level. See the [specialization levels section of the SciMLBase documentation](https://docs.sciml.ai/SciMLBase/stable/interfaces/Problems/#Specialization-Levels) - for more details. The default is `AutoSpecialize. + for more details. The default is `AutoSpecialize`. Parameters are optional, and if not given then a `NullParameters()` singleton will be used which will throw nice errors if you try to index non-existent diff --git a/src/solutions/nonlinear_solutions.jl b/src/solutions/nonlinear_solutions.jl index 80bddb7cd..8813b1a19 100644 --- a/src/solutions/nonlinear_solutions.jl +++ b/src/solutions/nonlinear_solutions.jl @@ -8,7 +8,7 @@ Statistics from the nonlinear equation solver about the solution process. - nf: Number of function evaluations. - njacs: Number of Jacobians created during the solve. - nfactors: Number of factorzations of the jacobian required for the solve. - - nsolve: Number of linear solves `W\b` required for the solve. + - nsolve: Number of linear solves `W\\b` required for the solve. - nsteps: Total number of iterations for the nonlinear solver. """ mutable struct NLStats diff --git a/src/solutions/ode_solutions.jl b/src/solutions/ode_solutions.jl index 47d375627..dfc33f806 100644 --- a/src/solutions/ode_solutions.jl +++ b/src/solutions/ode_solutions.jl @@ -14,7 +14,7 @@ Statistics from the differential equation solver about the solution process. it is zero. - nw: The number of W=I-gamma*J (or W=I/gamma-J) matrices constructed during the solving process. - - nsolve: The number of linear solves `W\b` required for the integration. + - nsolve: The number of linear solves `W\\b` required for the integration. - njacs: Number of Jacobians calculated during the integration. - nnonliniter: Total number of iterations for the nonlinear solvers. - nnonlinconvfail: Number of nonlinear solver convergence failures. diff --git a/src/solve.jl b/src/solve.jl index c3a9cd4dc..42961b8e5 100644 --- a/src/solve.jl +++ b/src/solve.jl @@ -48,7 +48,7 @@ solve(prob::OptimizationProblem, alg::AbstractOptimizationAlgorithm, args...; kwargs...)::OptimizationSolution ``` -For information about the returned solution object, refer to the documentation for [OptimizationSolution](@ref) +For information about the returned solution object, refer to the documentation for [`OptimizationSolution`](@ref) ## Keyword Arguments