Releases: JuliaLinearAlgebra/ArnoldiMethod.jl
Releases · JuliaLinearAlgebra/ArnoldiMethod.jl
Various fixes
- No more dependency on LAPACK
partialschur
also returns a list of the eigenvaluespartialschur
now respectsnev
: only a conjugate pair can make the method returnnev+1
eigenvalues- Better targeting: unwanted converged eigenvalues are less likely to be return by
partialschur
- The method now uses Krylov-Schur rather than Lehoucq & Sorensen's implicit restart
- Some more docs.
Small API improvements and convergence detection
- The stopping criterion for near zero eigenvalues has been fixed; it was too strict.
- Errors are thrown when the input matrix is non-square or the kwargs are incorrect.
- Default parameters make more sense for small matrices.
partial_schur
is renamed topartialschur
schur_to_eigen
is renamed topartialeigen
min
andmax
are now calledmindim
andmaxdim
respectively.partialschur
works with integer matrices now.
Initial release
The package is still a work in progress, but with basic functionality it might be worth it to have an official initial release 🌅.