Skip to content

Commit e963383

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

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

maths/numerical_analysis/gauss_seidel_method.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ def gauss_seidel(
22
coefficients: list[list[float]],
33
rhs: list[float],
44
tol: float = 1e-10,
5-
max_iter: int = 1000
5+
max_iter: int = 1000,
66
) -> list[float]:
77
"""
88
Solve the linear system Ax = b using the Gauss-Seidel iterative method.

0 commit comments

Comments
 (0)