diff --git a/src/minares.jl b/src/minares.jl index 72dc89539..863489125 100644 --- a/src/minares.jl +++ b/src/minares.jl @@ -305,7 +305,7 @@ kwargs_minares = (:M, :ldiv, :λ, :atol, :rtol, :Artol, :itmax, :timemax, :verbo # [ • • ϵₖ₋₁ γₖ ] [ 0 • • • • • 0 ] # [ 0 • • • • 0 ϵₖ ] [ 0 • • • • • 0 ] - # If k = 1, we don't have any previous reflexion. + # If k = 1, we don't have any previous reflection. # If k = 2, we apply the reflections Q̃ₖ₊₁.ₖ₋₁ and Q̃ₖ.ₖ₋₁. # If k ≥ 3, we apply the reflections Q̃ₖ.ₖ₋₁, Q̃ₖ₊₁.ₖ₋₁ and Q̃ₖ.ₖ₋₂. diff --git a/src/minres_qlp.jl b/src/minres_qlp.jl index f981da740..1ac47a50e 100644 --- a/src/minres_qlp.jl +++ b/src/minres_qlp.jl @@ -253,9 +253,9 @@ kwargs_minres_qlp = (:M, :ldiv, :λ, :atol, :rtol, :Artol, :itmax, :timemax, :ve # [ • • βₖ αₖ ] [ 0 • • • • 0 λₖ ] # [ 0 • • • • 0 βₖ₊₁] [ 0 • • • • • 0 ] # - # If k = 1, we don't have any previous reflexion. - # If k = 2, we apply the last reflexion. - # If k ≥ 3, we only apply the two previous reflexions. + # If k = 1, we don't have any previous reflection. + # If k = 2, we apply the last reflection. + # If k ≥ 3, we only apply the two previous reflections. # Apply previous Givens reflections Qₖ₋₂.ₖ₋₁ if iter ≥ 3 diff --git a/src/qmr.jl b/src/qmr.jl index d9de5178d..892ddd14a 100644 --- a/src/qmr.jl +++ b/src/qmr.jl @@ -257,9 +257,9 @@ kwargs_qmr = (:c, :M, :N, :ldiv, :atol, :rtol, :itmax, :timemax, :verbose, :hist # [ • • βₖ αₖ ] [ • • δₖ ] # [ 0 • • • • 0 βₖ₊₁] [ 0 • • • • • 0 ] # - # If k = 1, we don't have any previous reflexion. - # If k = 2, we apply the last reflexion. - # If k ≥ 3, we only apply the two previous reflexions. + # If k = 1, we don't have any previous reflection. + # If k = 2, we apply the last reflection. + # If k ≥ 3, we only apply the two previous reflections. # Apply previous Givens reflections Qₖ₋₂.ₖ₋₁ if iter ≥ 3 diff --git a/src/usymqr.jl b/src/usymqr.jl index e385ef43f..fbb75760c 100644 --- a/src/usymqr.jl +++ b/src/usymqr.jl @@ -223,9 +223,9 @@ kwargs_usymqr = (:atol, :rtol, :itmax, :timemax, :verbose, :history, :callback, # [ • • βₖ αₖ ] [ 0 • • • • 0 δₖ ] # [ 0 • • • • 0 βₖ₊₁] [ 0 • • • • • 0 ] # - # If k = 1, we don't have any previous reflexion. - # If k = 2, we apply the last reflexion. - # If k ≥ 3, we only apply the two previous reflexions. + # If k = 1, we don't have any previous reflection. + # If k = 2, we apply the last reflection. + # If k ≥ 3, we only apply the two previous reflections. # Apply previous Givens reflections Qₖ₋₂.ₖ₋₁ if iter ≥ 3