Skip to content

Commit

Permalink
Fix a typo -- reflexion -> reflection
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Oct 31, 2024
1 parent 43cdad9 commit f82223c
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/minares.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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̃ₖ.ₖ₋₂.

Expand Down
6 changes: 3 additions & 3 deletions src/minres_qlp.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/qmr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/usymqr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f82223c

Please sign in to comment.