2021-06-04 16:50:49 +02:00
|
|
|
// Sherman-Morrison-Woodbury kernel 1
|
2021-06-21 14:29:24 +02:00
|
|
|
// WB2, WB3, SM2 mixing scheme
|
2021-07-12 08:13:58 +02:00
|
|
|
void SMWB1(double *Slater_inv, const unsigned int Dim,
|
|
|
|
const unsigned int N_updates, double *Updates,
|
|
|
|
unsigned int *Updates_index);
|
2021-06-21 14:29:24 +02:00
|
|
|
|
2021-07-15 17:56:33 +02:00
|
|
|
// Sherman-Morrison-Woodbury kernel 2
|
2021-06-21 14:29:24 +02:00
|
|
|
// WB2, SM2 mixing scheme
|
2021-07-15 17:56:33 +02:00
|
|
|
void SMWB2(double *Slater_inv, const unsigned int Dim,
|
2021-07-12 08:13:58 +02:00
|
|
|
const unsigned int N_updates, double *Updates,
|
|
|
|
unsigned int *Updates_index);
|