Skip to content

Commit

Permalink
Fix docs
Browse files Browse the repository at this point in the history
  • Loading branch information
avik-pal committed Jan 15, 2024
1 parent 6e6e1fa commit cf04e3f
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions Project.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ ForwardDiff = "0.10.36"
LazyArrays = "1.8.2"
LeastSquaresOptim = "0.8.5"
LineSearches = "7.2"
LinearAlgebra = "<0.0.1, 1"
LinearAlgebra = "1.10"
LinearSolve = "2.21"
MINPACK = "1.2"
MaybeInplace = "0.1.1"
Expand All @@ -81,10 +81,10 @@ NonlinearProblemLibrary = "0.1.2"
OrdinaryDiffEq = "6.63"
Pkg = "1.10"
PrecompileTools = "1.2"
Preferences = "1"
Preferences = "1.4"
Printf = "1.10"
Random = "1.91"
RecursiveArrayTools = "3.2"
RecursiveArrayTools = "3.4"
Reexport = "1.2"
SIAMFANLEquations = "1.0.1"
SafeTestsets = "0.1"
Expand Down
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ makedocs(; sitename = "NonlinearSolve.jl",
DiffEqBase, SciMLBase],
clean = true, doctest = false, linkcheck = true,
linkcheck_ignore = ["https://twitter.com/ChrisRackauckas/status/1544743542094020615"],
checkdocs = :exports, warnonly = false, plugins = [bib],
checkdocs = :exports, warnonly = [:missing_docs], plugins = [bib],
format = Documenter.HTML(assets = ["assets/favicon.ico", "assets/citations.css"],
canonical = "https://docs.sciml.ai/NonlinearSolve/stable/"),
pages)
Expand Down
2 changes: 1 addition & 1 deletion src/core/approximate_jacobian.jl
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ examples include [`Broyden`](@ref)'s Method.
### Keyword Arguments
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
- `descent`: The descent method to use to compute the step. This needs to follow the
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk
Expand Down
2 changes: 1 addition & 1 deletion src/core/generalized_first_order.jl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ order of convergence.
### Keyword Arguments
- `trustregion`: Globalization using a Trust Region Method. This needs to follow the
[`NonlinearSolve.AbstractNonlinearSolveTrustRegionAlgorithm`](@ref) interface.
[`NonlinearSolve.AbstractTrustRegionMethod`](@ref) interface.
- `descent`: The descent method to use to compute the step. This needs to follow the
[`NonlinearSolve.AbstractDescentAlgorithm`](@ref) interface.
- `max_shrink_times`: The maximum number of times the trust region radius can be shrunk
Expand Down

0 comments on commit cf04e3f

Please sign in to comment.