Type overloads for C++
| 79 | |
| 80 | // Type overloads for C++ |
| 81 | inline void geqrf( const int & m, const int & n, double da[], const int & lda, double dtau[], double dwork[], const int& ldwork, int& info) |
| 82 | { |
| 83 | dgeqrf_(m,n,da,lda,dtau,dwork,ldwork,info); |
| 84 | } |
| 85 | inline void geqrf( const int & m, const int & n, float da[], const int & lda, float dtau[], float dwork[], const int& ldwork, int& info) |
| 86 | { |
| 87 | sgeqrf_(m,n,da,lda,dtau,dwork,ldwork,info); |
no test coverage detected