mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-11-03 20:54:08 +01:00
12 lines
442 B
C++
12 lines
442 B
C++
// 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);
|
|
|
|
// Sherman-Morrison-Woodbury kernel 2
|
|
// WB2, SM2 mixing scheme
|
|
void SMWB2(double *Slater_inv, const unsigned int Dim,
|
|
const unsigned int N_updates, double *Updates,
|
|
unsigned int *Updates_index);
|