Skip to content

Commit

Permalink
Fix linting
Browse files Browse the repository at this point in the history
  • Loading branch information
reverendbedford committed Oct 13, 2021
1 parent 2fbce35 commit 8d49c32
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion srlife/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ def newton(RJ, x0, rel_tol = 1.0-6, abs_tol = 1.0e-8, miters = 20,
rel_tol (Optional[1.0e-6]): relative convergence tolerance
abs_tol (Optional[1.0e-8]): absolute convergence tolerance
miters (Optional[20]): maximum number of iterations
linear_solver (Optional[numpy.linalg.solve]): function that solves the linear system A x = b
linear_solver (Optional[numpy.linalg.solve]): function that solves
the linear system A x = b
verbose (Optional[True]): if true, print debug info,
return_extra (Optional[False]): if true also return the final residual vector and Jacobian
linesearch (Optional[True]): if true do backtracking linesearch
Expand Down

0 comments on commit 8d49c32

Please sign in to comment.