From 259e45c27b34ca3f0818bb139184d1df12c548ca Mon Sep 17 00:00:00 2001 From: Victor Vanthilt <73738005+VictorVanthilt@users.noreply.github.com> Date: Sun, 19 May 2024 09:49:57 +0200 Subject: [PATCH] add eager = false to docstring of Arnoldi KrylovAlgorithm (#86) --- src/algorithms.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/algorithms.jl b/src/algorithms.jl index 270212b..b771c96 100644 --- a/src/algorithms.jl +++ b/src/algorithms.jl @@ -154,7 +154,7 @@ end """ Arnoldi(; krylovdim = KrylovDefaults.krylovdim, maxiter = KrylovDefaults.maxiter, - tol = KrylovDefaults.tol, orth = KrylovDefaults.orth, verbosity = 0) + tol = KrylovDefaults.tol, orth = KrylovDefaults.orth, eager = false, verbosity = 0) Represents the Arnoldi algorithm for building the Krylov subspace for a general matrix or linear operator. Can be used in `eigsolve` and `exponentiate`. The corresponding algorithms