Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
ffelten committed Apr 4, 2023
1 parent ce5063a commit f1f84ec
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ def max_value_lp(self, w_new: np.ndarray) -> float:
try:
result = prob.solve(verbose=False)
except SolverError:
print("SCS solver error, trying another one.")
print("ECOS solver error, trying another one.")
result = prob.solve(solver=cp.SCS, verbose=False)
return result

Expand Down

0 comments on commit f1f84ec

Please sign in to comment.