Skip to content

Commit

Permalink
Update the reference of the GPMR paper
Browse files Browse the repository at this point in the history
  • Loading branch information
amontoison committed Mar 10, 2023
1 parent 886200f commit aaf83e5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/gpmr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
# This method is described in
#
# A. Montoison and D. Orban
# GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems
# Cahier du GERAD G-2021-62.
# GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems.
# SIAM Journal on Matrix Analysis and Applications, 44(1), pp. 293--311, 2023.
#
# Alexis Montoison, <[email protected]>
# Montréal, August 2021.
Expand Down Expand Up @@ -97,7 +97,7 @@ GPMR stops when `itmax` iterations are reached or when `‖rₖ‖ ≤ atol +
#### Reference
* A. Montoison and D. Orban, [*GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems*](https://dx.doi.org/10.13140/RG.2.2.24069.68326), Cahier du GERAD G-2021-62, GERAD, Montréal, 2021.
* A. Montoison and D. Orban, [*GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems*](https://doi.org/10.1137/21M1459265), SIAM Journal on Matrix Analysis and Applications, 44(1), pp. 293--311, 2023.
"""
function gpmr end

Expand Down
2 changes: 1 addition & 1 deletion src/krylov_processes.jl
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ end
#### Reference
* A. Montoison and D. Orban, [*GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems*](https://dx.doi.org/10.13140/RG.2.2.24069.68326), Cahier du GERAD G-2021-62, GERAD, Montréal, 2021.
* A. Montoison and D. Orban, [*GPMR: An Iterative Method for Unsymmetric Partitioned Linear Systems*](https://doi.org/10.1137/21M1459265), SIAM Journal on Matrix Analysis and Applications, 44(1), pp. 293--311, 2023.
"""
function montoison_orban(A, B, b::AbstractVector{FC}, c::AbstractVector{FC}, k::Int) where FC <: FloatOrComplex
m, n = size(A)
Expand Down

0 comments on commit aaf83e5

Please sign in to comment.