Skip to content

Commit

Permalink
Merge branch 'devel' into codacy-codecov
Browse files Browse the repository at this point in the history
  • Loading branch information
campospinto authored Jan 22, 2025
2 parents ffbc726 + 74c1271 commit 8f390a5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion psydac/linalg/solvers.py
Original file line number Diff line number Diff line change
Expand Up @@ -1007,7 +1007,7 @@ def solve(self, b, out=None):
pp += rp

# new residual norm
res_sqr = r.dot(r)
res_sqr = r.dot(r).real

niter += 1

Expand Down Expand Up @@ -1804,6 +1804,10 @@ def solve(self, b, out=None):
r -= b

am = sqrt(r.dot(r).real)
if am < tol:
self._info = {'niter': 1, 'success': am < tol, 'res_norm': am }
return x

beta.append(am)
r *= - 1 / am

Expand Down

0 comments on commit 8f390a5

Please sign in to comment.