Skip to content

Commit

Permalink
lower step acceptance, i.e., step_threshold, from 1//10 to 1//1000
Browse files Browse the repository at this point in the history
  • Loading branch information
FHoltorf committed Sep 14, 2023
1 parent 50fcc03 commit bf1b27d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/trustRegion.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit bf1b27d

Please sign in to comment.