| 95 | sgetrs_(transa,n,nrhs,da,lda,ipivot,db,ldb,info); |
| 96 | } |
| 97 | inline void getrf( const int& m, const int& n, double da[], const int& lda, int ipivot[], int& info) |
| 98 | { |
| 99 | dgetrf_(m,n,da,lda,ipivot,info); |
| 100 | } |
| 101 | inline void getrf( const int& m, const int& n, float da[], const int& lda, int ipivot[], int& info) |
| 102 | { |
| 103 | sgetrf_(m,n,da,lda,ipivot,info); |
no test coverage detected