Skip to content

Commit

Permalink
Minor
Browse files Browse the repository at this point in the history
  • Loading branch information
JordiManyer committed Sep 6, 2023
1 parent 21296d3 commit e2a23a8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/LinearSolvers/GMRESSolvers.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# GMRES Solver
struct GMRESSolver <: Gridap.Algebra.LinearSolver
m ::Int
Pl
Pl ::Gridap.Algebra.LinearSolver
tol::Float64
end

Expand Down Expand Up @@ -107,7 +107,7 @@ function Gridap.Algebra.solve!(x::AbstractVector,ns::GMRESNumericalSetup,b::Abst
iter += 1
end
println(" Exiting GMRES solver.")
println(" > Num Iter: ", iter-1," - Final residual: ", β)
println(" > Num Iter: ", iter," - Final residual: ", β)

return x
end

0 comments on commit e2a23a8

Please sign in to comment.