*** empty log message ***

This commit is contained in:
jiri 2009-10-07 15:25:44 +00:00
parent 0196701bfe
commit c5309ee47b
1 changed files with 11 additions and 2 deletions

View File

@ -666,10 +666,19 @@ int cblas_errprn(int ierr, int info, char *form, ...);
#endif
#endif /*NONCBLAS*/
#ifdef NONCLAPACK
#ifndef NONCLAPACK_H
#define NONCLAPACK_H
#ifndef NONCBLAS
#include <cblas.h>
#endif
/*from clapack.h*/
int clapack_dgesv(const enum CBLAS_ORDER Order, const int N, const int NRHS,
double *A, const int lda, int *ipiv,
double *B, const int ldb);
#endif
#endif