We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 435a069 commit 1787811Copy full SHA for 1787811
src/LM_alg.jl
@@ -261,7 +261,7 @@ function LM(
261
if ρk < η1 || ρk == Inf
262
σk = σk * γ
263
end
264
- νInv = (1 + θ) * (σmax^2 + σk) # ‖J'J + σₖ I‖ = ‖J‖² + σₖ
+ νInv = (σmax^2 + σk) / θ # ‖J'J + σₖ I‖ = ‖J‖² + σₖ
265
tired = k ≥ maxIter || elapsed_time > maxTime
266
267
0 commit comments