source: ThirdParty/mpqc_open/src/lib/chemistry/qc/mbptr12/lapack.h

Candidate_v1.6.1
Last change on this file was 860145, checked in by Frederik Heber <heber@…>, 8 years ago

Merge commit '0b990dfaa8c6007a996d030163a25f7f5fc8a7e7' as 'ThirdParty/mpqc_open'

  • Property mode set to 100644
File size: 622 bytes
Line 
1extern "C" {
2#include <chemistry/qc/mbptr12/f77sym.h>
3
4extern void F77_DGESVD(const char* jobu, const char* jobvt, const int* m,
5const int* n, double* A, const int* lda, double* S, double* U, const int* ldu,
6double* Vt, const int* ldvt, double* work, int* lwork, int* info);
7
8extern void F77_DSPSVX(const char* fact, const char* uplo, const int* n, const int* nrhs,
9 const double* AP, double* AFP, int* ipiv, const double* BB, const int* nb,
10 double* XX, const int* nx, double* rcond, double* ferr, double* berr,
11 double* work, int* iwork, int* info);
12
13}
14
Note: See TracBrowser for help on using the repository browser.