Skip to content

Commit

Permalink
fixed second usage of logic
Browse files Browse the repository at this point in the history
  • Loading branch information
crecine committed May 6, 2024
1 parent fb95de0 commit d70f14f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyoptsparse/pyOpt_optimization.py
Original file line number Diff line number Diff line change
Expand Up @@ -1699,7 +1699,7 @@ def summary_str(self, minimal_print=False):
# Active upper bound
status += "u"

if not (minimal_print and not status):
if not minimal_print or status:
text += fmt.format(
idx, c.name, typ, lower, value, upper, status, lambdaStar[con_name][j], width=num_c
)
Expand Down

0 comments on commit d70f14f

Please sign in to comment.