Skip to content

IterativeFlex

Compare
Choose a tag to compare
@davidkleiven davidkleiven released this 21 Jun 15:15
· 19 commits to master since this release
e4b1f63

The main upgrade is that the internal iterative solver used in Newton's method is now changed to Gonum's iterative solvers, instead of the one that was previously included in this package. The default is changed from BiCGStab to GMRES. Since the internal solver technically can be any algorithm that satisfied Gonum's linsolve.Method interface, the name of the solver was somewhat misleading. Therefore, the name of the Newton solver is now changed from NewtonBCGS to NewtonKrylov.

API breaking changes:

  • NewtonBCGS is renamed to NewtonKrylov