Skip to content

Commit

Permalink
Separate atol, docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Huite committed Jul 11, 2024
1 parent e24d313 commit cf7fc71
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions xugrid/core/dataarray_accessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ def laplace_interpolate(
delta=0.0,
relax=0.0,
rtol=1.0e-5,
atol=1.0e-5,
atol=0.0,
maxiter: int = 500,
):
"""
Expand Down Expand Up @@ -607,7 +607,9 @@ def laplace_interpolate(
ILU0 preconditioner non-diagonally dominant correction.
relax: float, default 0.0.
Modified ILU0 preconditioner relaxation factor.
tol: float, optional, default 1.0e-5.
rtol: float, optional, default 1.0e-5.
Convergence tolerance for ``scipy.sparse.linalg.cg``.
atol: float, optional, default 0.0.
Convergence tolerance for ``scipy.sparse.linalg.cg``.
maxiter: int, default 500.
Maximum number of iterations for ``scipy.sparse.linalg.cg``.
Expand Down

0 comments on commit cf7fc71

Please sign in to comment.