00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef MTL_LAPACK_INCLUDE
00013 #define MTL_LAPACK_INCLUDE
00014
00015 #include <complex>
00016
00017
00018 #ifdef __cplusplus
00019 extern "C" {
00020 #endif
00021
00022
00023
00024 void spotrf_(const char* uplo, const int* n, float *a, const int* ld, int* info);
00025 void dpotrf_(const char* uplo, const int* n, double *a, const int* ld, int* info);
00026 void cpotrf_(const char* uplo, const int* n, std::complex<float> *a, const int* ld, int* info);
00027 void zpotrf_(const char* uplo, const int* n, std::complex<double> *a, const int* ld, int* info);
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #ifdef __cplusplus
00043 }
00044 #endif
00045
00046
00047 #endif // MTL_LAPACK_INCLUDE