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
When I give options = {"disp": 5} to minimize_ipopt it always ends up using {b"print_level": 0}, meaning no output is printed. I believe the problem is here in the code. Given that options is a dict it will always end up in the else case. Maybe option.get() is more suitable here? And it would be great if we can allow for display levels greater than 1. Apologies if I'm missing something or using the interface wrong!
The text was updated successfully, but these errors were encountered:
Sounds good! I was under the impression that this would get fixed in the other PR but I have a bit of time to submit something tomorrow. Thanks for the update!
When I give
options = {"disp": 5}
tominimize_ipopt
it always ends up using{b"print_level": 0}
, meaning no output is printed. I believe the problem is here in the code. Given thatoptions
is adict
it will always end up in theelse
case. Maybeoption.get()
is more suitable here? And it would be great if we can allow for display levels greater than1
. Apologies if I'm missing something or using the interface wrong!The text was updated successfully, but these errors were encountered: