mirror of
https://github.com/TREX-CoE/Sherman-Morrison.git
synced 2024-11-04 13:14:01 +01:00
9 lines
389 B
C++
9 lines
389 B
C++
|
// P. Maponi Algorithm 3
|
||
|
void MaponiA3(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
||
|
double *Updates, unsigned int *Updates_index);
|
||
|
|
||
|
// P. Maponi Algorithm 3 with J. Slagel splitting
|
||
|
// http://hdl.handle.net/10919/52966
|
||
|
void MaponiA3S(double *Slater_inv, unsigned int Dim, unsigned int N_updates,
|
||
|
double *Updates, unsigned int *Updates_index);
|