Skip to content

Commit 174d8a9

Browse files
Replace Krylov_{CG,GMRES} by KrylovJL_{CG,GMRES} (#786)
1 parent fa0859b commit 174d8a9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/src/solvers/solvers.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -85,8 +85,8 @@ factorization methods if a lower tolerance of the solution is required.
8585
Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
8686
with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
8787
choice of Krylov method should be the one most constrained to the type of operator one
88-
has, for example if positive definite then `Krylov_CG()`, but if no good properties then
89-
use `Krylov_GMRES()`.
88+
has, for example if positive definite then `KrylovJL_CG()`, but if no good properties then
89+
use `KrylovJL_GMRES()`.
9090

9191
Finally, a user can pass a custom function for handling the linear solve using
9292
`LS.LinearSolveFunction()` if existing solvers are not optimally suited for their application.
@@ -99,8 +99,8 @@ then using a Krylov method is preferred in order to not concretize the matrix.
9999
Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
100100
with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
101101
choice of Krylov method should be the one most constrained to the type of operator one
102-
has, for example if positive definite then `Krylov_CG()`, but if no good properties then
103-
use `Krylov_GMRES()`.
102+
has, for example if positive definite then `KrylovJL_CG()`, but if no good properties then
103+
use `KrylovJL_GMRES()`.
104104

105105
!!! tip
106106

0 commit comments

Comments
 (0)