From c3ea5a2e0a3a00b3ddc06023f375563b8d9ebb15 Mon Sep 17 00:00:00 2001 From: Alexis Montoison Date: Thu, 31 Oct 2024 00:49:53 -0500 Subject: [PATCH] =?UTF-8?q?[documentation]=20Add=20a=20link=20for=20the=20?= =?UTF-8?q?paper=20of=20BiCGstab(=E2=84=93)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/bicgstab.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bicgstab.jl b/src/bicgstab.jl index 2e95d6b23..b4438edfe 100644 --- a/src/bicgstab.jl +++ b/src/bicgstab.jl @@ -74,7 +74,7 @@ BICGSTAB stops when `itmax` iterations are reached or when `‖rₖ‖ ≤ atol #### References * H. A. van der Vorst, [*Bi-CGSTAB: A fast and smoothly converging variant of Bi-CG for the solution of nonsymmetric linear systems*](https://doi.org/10.1137/0913035), SIAM Journal on Scientific and Statistical Computing, 13(2), pp. 631--644, 1992. -* G. L.G. Sleijpen and D. R. Fokkema, *BiCGstab(ℓ) for linear equations involving unsymmetric matrices with complex spectrum*, Electronic Transactions on Numerical Analysis, 1, pp. 11--32, 1993. +* G. L.G. Sleijpen and D. R. Fokkema, [*BiCGstab(ℓ) for linear equations involving unsymmetric matrices with complex spectrum*](https://etna.math.kent.edu/volumes/1993-2000/vol1/abstract.php?vol=1&pages=11-32), Electronic Transactions on Numerical Analysis, 1, pp. 11--32, 1993. """ function bicgstab end