Releases: andrenarchy/krypy
Releases · andrenarchy/krypy
v2.2.0
v2.1.7
v2.1.5
krypy v2.1.4
Fix readthedocs build
krypy v2.1.3
Improved README for PyPi.
krypy v2.1.2
Drop support for scipy 0.12
krypy v2.1.1
Release with usability improvements. Several simplifications were made for an easier use of the functionality in krypy.recycling
. No API changes have been made.
krypy v2.1.0
This is a feature- and bug fix update:
- new
linsys.TimedLinearSystem
that times all operations. - more mature recycling strategies based on timings.
- more efficient computation of residual norms in
deflation.bound_pseudo
viautils.get_residual_norms
. - bug fixed in
deflation.Arnoldifyer
.
krypy v2.0.0
Now with deflation and recycling support.
krypy v2.0.0b1
Beta release!
- new API
- linear systems are now handled via the
linsys.LinearSystem
class linsys.Minres
andlinsys.Gmres
now useutils.Arnoldi
- new
utils.Arnoldi
class features several orthogonalization algorithms:- modified Gram-Schmidt
- iterated modified Gram-Schmit
- Lanczos
- Householder
- all solvers in
linsys
can return the corresponding Arnoldi relation - new submodule
deflation
enables deflation with all solvers fromlinsys
- new submodule
recycling
provides methods for recycling data while solving a sequence of linear systems.