Skip to content

Commit 4a80136

Browse files
committed
Add back suppression warning
1 parent e4f564c commit 4a80136

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

pyomo/contrib/multistart/multi.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -117,14 +117,14 @@ def __init__(
117117
Value bounded in (0, 1].""",
118118
),
119119
)
120-
# self.surpress_unbounded_warning = self.declare(
121-
# "suppress_unbounded_warning",
122-
# ConfigValue(
123-
# default=False,
124-
# domain=bool,
125-
# description="True to suppress warning for skipping unbounded variables.",
126-
# ),
127-
# )
120+
self.suppress_unbounded_warning = self.declare(
121+
"suppress_unbounded_warning",
122+
ConfigValue(
123+
default=False,
124+
domain=bool,
125+
description="True to suppress warning for skipping unbounded variables.",
126+
),
127+
)
128128
self.HCS_max_iterations = self.declare(
129129
"HCS_max_iterations",
130130
ConfigValue(

0 commit comments

Comments
 (0)