Skip to content

Commit

Permalink
Merge pull request #107 from avik-pal/ap/fix_docs
Browse files Browse the repository at this point in the history
Fix links
  • Loading branch information
ChrisRackauckas authored Dec 7, 2023
2 parents 4cfc0cc + a86117d commit 17d65e9
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions lib/SimpleNonlinearSolve/src/nlsolve/dfsane.jl
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,7 @@
A low-overhead implementation of the df-sane method for solving large-scale nonlinear
systems of equations. For in depth information about all the parameters and the algorithm,
see the paper: [W LaCruz, JM Martinez, and M Raydan (2006), Spectral residual mathod without
gradient information for solving large-scale nonlinear systems of equations, Mathematics of
Computation, 75, 1429-1448.](https://www.researchgate.net/publication/220576479_Spectral_Residual_Method_without_Gradient_Information_for_Solving_Large-Scale_Nonlinear_Systems_of_Equations)
see the paper [1].
### Keyword Arguments
Expand Down Expand Up @@ -37,6 +35,12 @@ Computation, 75, 1429-1448.](https://www.researchgate.net/publication/220576479_
``f_1=||F(x_1)||^{nexp}``, `k` is the iteration number, `x` is the current `x`-value and
`F` the current residual. Should satisfy ``η_k > 0`` and ``∑ₖ ηₖ < ∞``. Defaults to
``||F||^2 / k^2``.
### References
[1] W LaCruz, JM Martinez, and M Raydan (2006), Spectral residual mathod without gradient
information for solving large-scale nonlinear systems of equations, Mathematics of
Computation, 75, 1429-1448.
"""
@kwdef @concrete struct SimpleDFSane <: AbstractSimpleNonlinearSolveAlgorithm
σ_min = 1e-10
Expand Down

0 comments on commit 17d65e9

Please sign in to comment.