mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-11-04 05:03:59 +01:00
8 lines
253 B
C++
8 lines
253 B
C++
// Woodbury 2x2 kernel
|
|
bool WB2(double *Slater_inv, unsigned int Dim,
|
|
double *Updates, unsigned int *Updates_index);
|
|
|
|
// Woodbury 3x3 kernel
|
|
bool WB3(double *Slater_inv, unsigned int Dim,
|
|
double *Updates, unsigned int *Updates_index);
|