-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add ftol
keyword
#32
Comments
Hi @matthewelmer-tamu! |
Glad to hear you're open to contributions! I'll take a look sometime later. |
There are different stopping criteria in any of the
Using To implement other stopping criteria in a flexible way, we could have the algorithms accept a user-defined callback that is called after every iteration with all needed information about the state of the algorithm. This callback shall returns whether to stop or to continue the iterations. This callback can also do many other things such as print iteration information, etc. This however implies modifying the Fortran version of the algorithms in |
I'm transitioning over from NLopt.jl after being majorly burned by the COBYLA bug. One thing I miss is being able to set an
ftol
. Will this make a return for this updated library?The text was updated successfully, but these errors were encountered: