You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `η2::T = T(0.9)`: very successful iteration threshold;
146
-
- `γ::T = T(3)`: regularization parameter multiplier, σ := σ/γ when the iteration is very successful and σ := σγ when the iteration is unsuccessful;
147
+
- `γ::T = T(3)`: trust-region radius parameter multiplier, Δ := Δ*γ when the iteration is very successful and Δ := Δ/γ when the iteration is unsuccessful;
147
148
- `α::T = 1/eps(T)`: TODO
148
149
- `β::T = 1/eps(T)`: TODO
149
-
- `χ::F = NormLinf(1)`: norm used to define the trust-region;`
150
+
- `χ = NormLinf(1)`: norm used to define the trust-region;`
150
151
- `subsolver::S = R2Solver`: subsolver used to solve the subproblem that appears at each iteration.
151
152
152
153
The algorithm stops either when `√(ξₖ/νₖ) < atol + rtol*√(ξ₀/ν₀) ` or `ξₖ < 0` and `√(-ξₖ/νₖ) < neg_tol` where ξₖ := f(xₖ) + h(xₖ) - φ(sₖ; xₖ) - ψ(sₖ; xₖ), and √(ξₖ/νₖ) is a stationarity measure.
0 commit comments