NLPModelsIpopt.jl
NLPModelsIpopt.jl copied to clipboard
A thin IPOPT wrapper for NLPModels
_Originally posted by @tmigot in https://github.com/JuliaSmoothOptimizers/NLPModelsIpopt.jl/discussions/103#discussioncomment-5244873_
It would be great to be able to do: ``` cb = (nlp, solver, stats) -> begin println(solver.x) end ``` with ipopt as well, I will mark it as an...
Allow doing the following ``` for file in NLPModelsIpopt.TEMP_FILES @show isfile(file) end ``` #101 / #100 : Closing the file by end doesn't after creating the stats doesn't seem to...
__TL;DR__: I get the following error when I run `ipopt` multiple times in a loop: ERROR: SystemError: opening file "/var/folders/ys/3h0gnqns4b98zb66_vl_m35m0000gn/T/jl_27Ed4DC3G3": Too many open files According to the error message, this...
This might create some issues, see #100 for instance.
The API is being refactored over at Ipopt.jl. There may be some fallout.
Using the option `print_timing_statistics="yes"`, Ipopt returns detailed time statistics in the output file that we could parse. See https://github.com/control-toolbox/CTDirect.jl/discussions/111#discussioncomment-9802833