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
Currently, Brent's method and GoldenSection only support a maximum number of iteration as a finite stopping criterium.
Currently, the signature of both these methods are:
functionoptimize(
f, x_lower::T, x_upper::T,
mo::Function;
rel_tol::T=sqrt(eps(T)),
abs_tol::T=eps(T),
iterations::Integer=1_000,
store_trace::Bool=false,
show_trace::Bool=false,
callback =nothing,
show_every =1,
extended_trace::Bool=false) where T <:AbstractFloat
It would be very important to add also a time limit.
The text was updated successfully, but these errors were encountered:
Currently, Brent's method and GoldenSection only support a maximum number of iteration as a finite stopping criterium.
Currently, the signature of both these methods are:
It would be very important to add also a time limit.
The text was updated successfully, but these errors were encountered: