Sherman-Morrison/include/SMWB.hpp

12 lines
442 B
C++
Raw Normal View History

// Sherman-Morrison-Woodbury kernel 1
// WB2, WB3, SM2 mixing scheme
void SMWB1(double *Slater_inv, const unsigned int Dim,
const unsigned int N_updates, double *Updates,
unsigned int *Updates_index);
2021-07-15 17:56:33 +02:00
// Sherman-Morrison-Woodbury kernel 2
// WB2, SM2 mixing scheme
2021-07-15 17:56:33 +02:00
void SMWB2(double *Slater_inv, const unsigned int Dim,
const unsigned int N_updates, double *Updates,
unsigned int *Updates_index);