File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -85,8 +85,8 @@ factorization methods if a lower tolerance of the solution is required.
8585Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
8686with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
8787choice 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
9191Finally, 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.
9999Krylov.jl generally outperforms IterativeSolvers.jl and KrylovKit.jl, and is compatible
100100with CPUs and GPUs, and thus is the generally preferred form for Krylov methods. The
101101choice 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
You can’t perform that action at this time.
0 commit comments