ArnoldiMethod v0.4.0
-
BREAKING: The target structs
LM
,SR
,LR
,SI
,LI
are no longer exported. You have to
import them explicitly:using ArnoldiMethod: LM
. But easier is to update your code from structs
LM()
to symbols:LM
(which requires at least v0.3). -
ArnoldiMethod.jl now exports
partialschur!
andArnoldiWorkspace
, which can be used to
pre-allocate (custom) matrices. Also it can be used to run the algorithm from an existing partial
Schur decomposition.
Merged pull requests:
- Support starting vec (#141) (@haampie)
- Add Apple Silicon to CI (#142) (@ViralBShah)
- Allow passing an initial partial Schur decomposition (#143) (@haampie)
- do not export LM, SR, LR, SI, LI (#144) (@haampie)
Closed issues:
- Feature request: Allow an initial start-vector (#91)