Releases: SuperFluffy/gramschmidt-rs
Releases · SuperFluffy/gramschmidt-rs
v0.5.0: Refactored and for edition 2018:
Refactored and for edition 2018:
- the Gram Schmidt factorizations are now all implemented via the GramSchmidt trait;
- introduce some error handling;
- provide convenience functions cgs, cgs2, and mgs.
0.4.0
- The algorithms are now configured via structs, the traits are dropped.
- Provide
ClassicalGramSchmidt
,ModifiedGramSchmidt
, and
ReorthogonalizedGramSchmidt
(known ascgs
,mgs
, andcgs2
in the
literature, respectively); cgs
andcgs2
are implemented usingblas
routines (major speedup!);- All routines are now able to handle column-major (Fortran-) and row-major (C-) order
of the input matrices; - Remove parallel code.