File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed
Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -260,7 +260,7 @@ function LM(
260260 if ρk < η1 || ρk == Inf
261261 σk = σk * γ
262262 end
263- νInv = (σmax^ 2 + σk)/ θ # ‖J'J + σₖ I‖ = ‖J‖² + σₖ
263+ νInv = (1 + θ) * ( σmax^ 2 + σk) # ‖J'J + σₖ I‖ = ‖J‖² + σₖ
264264 tired = k ≥ maxIter || elapsed_time > maxTime
265265 end
266266
Original file line number Diff line number Diff line change @@ -19,11 +19,11 @@ include("splitting.jl")
1919include (" TR_alg.jl" )
2020include (" TRDH_alg.jl" )
2121include (" R2_alg.jl" )
22+ include (" LM_alg.jl" )
23+ include (" LMTR_alg.jl" )
2224include (" R2DH.jl" )
2325include (" R2NModel.jl" )
2426include (" R2N.jl" )
25- include (" LM_alg.jl" )
26- include (" LMTR_alg.jl" )
2727include (" AL_alg.jl" )
2828
2929end # module RegularizedOptimization
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ mutable struct ROSolverOptions{R}
3434 α:: R = 1 / eps (R),
3535 ν:: R = eps (R)^ (1 / 5 ),
3636 γ:: R = R (3 ),
37- θ:: R = 1 / ( 1 + eps (R)^ (1 / 5 ) ),
37+ θ:: R = eps (R)^ (1 / 5 ),
3838 β:: R = 1 / eps (R),
3939 reduce_TR:: Bool = true ,
4040 ) where {R <: Real }
You can’t perform that action at this time.
0 commit comments