-
Notifications
You must be signed in to change notification settings - Fork 62
Open
Labels
Description
HI there,
Firstly, thank you for providing this awesome wrapper around IPOPT, the scipy interface makes it super easy to get up and running with quickly.
I can see that callbacks are not implemented yet for the scipy interface:
cyipopt/cyipopt/scipy_interface.py
Lines 676 to 677 in 097fae9
if method is None and callback is not None: | |
raise NotImplementedError('`callback` is not yet supported by Ipopt.`') |
Looks like callbacks at the end of each step can be achieved using the intermediate
method of the Problem
class, so I'm interested to know:
- Why they weren't originally included in the scipy interface?
- If it's on the roadmap to implement?
Thanks!