Skip to content

Commit

Permalink
Change outer tolerances default to nothing (#936)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArnoStrouwen committed Aug 7, 2023
1 parent 6f19cdc commit fd93033
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types.jl
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ function Options(;
f_reltol::Real = 0.0,
g_abstol::Real = 1e-8,
g_reltol::Real = 1e-8,
outer_x_tol = 0.0,
outer_f_tol = 0.0,
outer_x_tol = nothing,
outer_f_tol = nothing,
outer_g_tol = nothing,
outer_x_abstol::Real = 0.0,
outer_x_reltol::Real = 0.0,
Expand Down

0 comments on commit fd93033

Please sign in to comment.