Skip to content

Commit

Permalink
solve issue #83: generate_steady_states fail
Browse files Browse the repository at this point in the history
  • Loading branch information
rkstu committed Feb 10, 2024
1 parent e7a96d9 commit 2b241a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dingo/gurobi_based_implementations.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,8 +108,8 @@ def fast_fba(lb, ub, S, c):
optimum_value = -model.getObjective().getValue()
v = model.getVars()

for i in range(n):
optimum_sol.append(v[i].x)
for i in range(n):
optimum_sol.append(v[i].x)

optimum_sol = np.asarray(optimum_sol)

Expand Down

0 comments on commit 2b241a7

Please sign in to comment.