1
0
mirror of https://github.com/TREX-CoE/qmckl.git synced 2024-06-30 00:44:52 +02:00
qmckl/org/qmckl_sherman_morrison_woodbury.org
2021-07-19 17:31:34 +05:30

1.5 KiB

Sherman-Morrison-Woodbury

[TODO: FMJC] Please add some intro.

Headers

(org-babel-lob-ingest "../tools/lib.org")
#include "qmckl.h"
#include "assert.h"
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
int main() {
qmckl_context context;
context = qmckl_context_create();

Sherman Morrison

[TODO: FMJC] Add general doc for Naive SM.

qmckl_sherman_morrison

[TODO: FMJC] Add some detailed description. Including formulae etc.

qmckl_context context in Global state

Requirements

[TODO: FMJC] Add description of the input variables. (see for e.g. qmckl_distance.org)

C header

Source

Performance

C interface

End of files

assert (qmckl_context_destroy(context) == QMCKL_SUCCESS);
return 0;
}