Skip to content

Commit

Permalink
fix bug gmres (#452)
Browse files Browse the repository at this point in the history
Solves issue #451.
  • Loading branch information
e-moral-sanchez authored Jan 22, 2025
1 parent 5ff3884 commit 74c1271
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 74c1271

Please sign in to comment.