Skip to content

Commit 4c2b04b

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent cfd85e2 commit 4c2b04b

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

linear_programming/simplex.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -304,7 +304,8 @@ def run_simplex(self) -> dict[Any, Any]:
304304
self.tableau = self.pivot(row_idx, col_idx)
305305
raise ValueError(
306306
f"Simplex did not converge within {Tableau.maxiter} iterations. "
307-
"The problem may be cycling or unbounded.")
307+
"The problem may be cycling or unbounded."
308+
)
308309

309310
def interpret_tableau(self) -> dict[str, float]:
310311
"""Given the final tableau, add the corresponding values of the basic

0 commit comments

Comments
 (0)