Skip to content

Commit

Permalink
Fixed variable name typo
Browse files Browse the repository at this point in the history
  • Loading branch information
adowling2 authored May 23, 2023
1 parent 1f61bee commit 5c0405a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyomo/contrib/doe/doe.py
Original file line number Diff line number Diff line change
Expand Up @@ -910,8 +910,8 @@ def initialize_fim(m, j, d):
# move the L matrix initial point to a dictionary
if type(self.L_initial) != type(None):
dict_cho = {}
for i, bu in enumerate(mod.regression_parameters):
for j, un in enumerate(mod.regression_parameters):
for i, bu in enumerate(model.regression_parameters):
for j, un in enumerate(model.regression_parameters):
dict_cho[(bu, un)] = self.L_initial[i][j]

# use the L dictionary to initialize L matrix
Expand Down

0 comments on commit 5c0405a

Please sign in to comment.