mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-11-03 20:54:08 +01:00
74bb333de1
- Renaming kernels to correspond with the ones in QMCkl - In the qmckl-version of the test program, chaning the way integer data is read from the HDF5 file.
18 lines
741 B
C++
18 lines
741 B
C++
// Sherman-Morrison-Woodbury kernel WB2s
|
|
// WB2, SM2 mixing scheme
|
|
void WB2s(double *Slater_inv, const unsigned int Dim,
|
|
const unsigned int N_updates, double *Updates,
|
|
unsigned int *Updates_index, const double breakdown);
|
|
|
|
// Sherman-Morrison-Woodbury kernel WB3s
|
|
// WB3, SM2 mixing scheme
|
|
void WB3s(double *Slater_inv, const unsigned int Dim,
|
|
const unsigned int N_updates, double *Updates,
|
|
unsigned int *Updates_index, const double breakdown);
|
|
|
|
// Sherman-Morrison-Woodbury kernel WB32s
|
|
// WB3, WB2, SM2 mixing scheme
|
|
void WB32s(double *Slater_inv, const unsigned int Dim,
|
|
const unsigned int N_updates, double *Updates,
|
|
unsigned int *Updates_index, const double breakdown);
|