From bf1b27de618ba1154f3bde9edcbb33b4fc53340a Mon Sep 17 00:00:00 2001 From: FHoltorf <32248677+FHoltorf@users.noreply.github.com> Date: Thu, 14 Sep 2023 11:20:47 -0400 Subject: [PATCH] lower step acceptance, i.e., step_threshold, from 1//10 to 1//1000 --- src/trustRegion.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/trustRegion.jl b/src/trustRegion.jl index 8fb4b29eb..e963be0d9 100644 --- a/src/trustRegion.jl +++ b/src/trustRegion.jl @@ -74,7 +74,7 @@ TrustRegion(; chunk_size = Val{0}(), autodiff = Val{true}(), radius_update_scheme = RadiusUpdateSchemes.Simple, max_trust_radius::Real = 0 // 1, initial_trust_radius::Real = 0 // 1, - step_threshold::Real = 1 // 10, + step_threshold::Real = 1 // 10000, shrink_threshold::Real = 1 // 4, expand_threshold::Real = 3 // 4, shrink_factor::Real = 1 // 4, @@ -176,7 +176,7 @@ function TrustRegion(; chunk_size = Val{0}(), radius_update_scheme::RadiusUpdateSchemes.T = RadiusUpdateSchemes.Simple, #defaults to conventional radius update max_trust_radius::Real = 0 // 1, initial_trust_radius::Real = 0 // 1, - step_threshold::Real = 1 // 10, + step_threshold::Real = 1 // 10000, shrink_threshold::Real = 1 // 4, expand_threshold::Real = 3 // 4, shrink_factor::Real = 1 // 4,