From 31b8e09c68fd518adfb9594a3c3bed59ebd5388c Mon Sep 17 00:00:00 2001 From: Jesse Perla Date: Wed, 1 Mar 2023 06:17:47 -0800 Subject: [PATCH] Incorrect default in readme (#274) In https://github.com/JuliaNLSolvers/NLsolve.jl/blob/master/src/nlsolve/nlsolve.jl#L14 it is `m=10` instead. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 137b964..f0d06da 100644 --- a/README.md +++ b/README.md @@ -294,7 +294,7 @@ It is also known as DIIS or Pulay mixing, this method is based on the acceleration of the fixed-point iteration `xₙ₊₁ = xₙ + beta*f(xₙ)`, where by default `beta=1`. It does not use Jacobian information or linesearch, but has a history whose size is controlled by the `m` parameter: `m=0` -(the default) corresponds to the simple fixed-point iteration above, +corresponds to the simple fixed-point iteration above, and higher values use a larger history size to accelerate the iterations. Higher values of `m` usually increase the speed of convergence, but increase the storage and computation requirements and