jump-dev / NLopt.jl

A Julia interface to the NLopt nonlinear-optimization library
https://nlopt.readthedocs.io/en/latest/
Other
262 stars 46 forks source link

Any verbose option? #202

Closed 563925743 closed 1 month ago

563925743 commented 1 year ago

Do we have any verbose option in Julia like NLOpt in Matlab does? Thank you!

stevengj commented 1 year ago

No, you just add a println statement (or whatever) to your objective function. See also #16 and https://github.com/stevengj/nlopt/issues/248.

odow commented 1 month ago

Closing as won't fix because this can be achieved in user-code without modifying NLopt.jl.