Skip to content

Commit

Permalink
bob
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 31, 2024
1 parent 3a3c03e commit de2354a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/block_minres.jl
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ kwargs_block_minres = (:M, :ldiv, :atol, :rtol, :itmax, :timemax, :verbose, :his
mul!(W, A, V) # Q ← AVₖ
for i = 1 : inner_iter
mul!(Ω, V', W) # Ωₖ = Vₖᴴ * Q
(iter 2) && mul!(Q, ...) # Q ← Q - βₖ * Vₖ₋₁ * Ψₖᴴ
# (iter ≥ 2) && mul!(Q, ...) # Q ← Q - βₖ * Vₖ₋₁ * Ψₖᴴ
mul!(Q, V, R, α, β) # Q = Q - Vₖ * Ωₖ
end

Expand Down

0 comments on commit de2354a

Please sign in to comment.