diff --git a/src/ArnoldiMethod.jl b/src/ArnoldiMethod.jl index 122fd9b..daaf166 100644 --- a/src/ArnoldiMethod.jl +++ b/src/ArnoldiMethod.jl @@ -5,7 +5,7 @@ using StaticArrays using Base: RefValue, OneTo -export partialschur, partialschur!, LM, SR, LR, SI, LI, partialeigen, ArnoldiWorkspace +export partialschur, partialschur!, partialeigen, ArnoldiWorkspace """ ArnoldiWorkspace(n, k) → ArnoldiWorkspace diff --git a/src/run.jl b/src/run.jl index d40d5f0..ee3a99c 100644 --- a/src/run.jl +++ b/src/run.jl @@ -47,6 +47,9 @@ The target `which` can be any of: | `:LI` or `LI()` | Largest imaginary part: `imag(λ)` is largest | | `:SI` or `SI()` | Smallest imaginary part: `imag(λ)` is smallest | +Note that as of ArnoldiMethod v0.4, you have to import `using ArnoldiMethod: LM` explicitly if you +do not want to use symbols. + !!! note The targets `:LI` and `:SI` only make sense in complex arithmetic. In real