Skip to content

Commit a99d503

Browse files
committed
fix attribute lookup in sep_rho
1 parent a90f29e commit a99d503

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: mpisppy/extensions/sep_rho.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def _compute_xmin(ph):
141141
def nonant_cost_coeffs(self, s):
142142
if s not in self._nonant_cost_coeffs:
143143
if hasattr(s._mpisppy_data, "nonant_cost_coeffs"):
144-
self._nonant_cost_coeffs[s] = s._mpisppy_model.nonant_cost_coeffs
144+
self._nonant_cost_coeffs[s] = s._mpisppy_data.nonant_cost_coeffs
145145
else:
146146
self._nonant_cost_coeffs[s] = nonant_cost_coeffs(s)
147147
return self._nonant_cost_coeffs[s]

0 commit comments

Comments
 (0)