From cf04e3fdc69570bc6754b794ef135a5002a5beac Mon Sep 17 00:00:00 2001 From: Avik Pal Date: Mon, 15 Jan 2024 08:29:14 -0500 Subject: [PATCH] Fix docs --- Project.toml | 6 +++--- docs/make.jl | 2 +- src/core/approximate_jacobian.jl | 2 +- src/core/generalized_first_order.jl | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/Project.toml b/Project.toml index 20ecf8ee5..c95d90714 100644 --- a/Project.toml +++ b/Project.toml @@ -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" @@ -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" diff --git a/docs/make.jl b/docs/make.jl index 622e8d45e..0826acd60 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -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) diff --git a/src/core/approximate_jacobian.jl b/src/core/approximate_jacobian.jl index 76d65fcc6..558d02889 100644 --- a/src/core/approximate_jacobian.jl +++ b/src/core/approximate_jacobian.jl @@ -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 diff --git a/src/core/generalized_first_order.jl b/src/core/generalized_first_order.jl index 7c047cb45..0e9db4485 100644 --- a/src/core/generalized_first_order.jl +++ b/src/core/generalized_first_order.jl @@ -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