Skip to content

Commit

Permalink
updated default of print_level from 5 to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkusZimmerDLR authored Nov 29, 2023
1 parent 0686410 commit 0a971ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cyipopt/scipy_interface.py
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ def minimize_ipopt(fun,
# Rename some default scipy options
replace_option(options, b'disp', b'print_level')
replace_option(options, b'maxiter', b'max_iter')
options[b'print_level'] = int(options.get(b'print_level', 5))
options[b'print_level'] = int(options.get(b'print_level', 0))

if b'tol' not in options:
options[b'tol'] = tol or 1e-8
Expand Down

0 comments on commit 0a971ab

Please sign in to comment.