diff options
author | xiangzhou | 2015-07-11 13:05:26 -0400 |
---|---|---|
committer | xiangzhou | 2015-07-11 13:05:26 -0400 |
commit | c65902a4e062689f03bb22e3b2d2526cf887750d (patch) | |
tree | eb1be445e26178efb98d960617355b9c86a30b65 /src/lapack.h | |
parent | b3b491cd9143d33bfebd4c5b26629573afcf0970 (diff) | |
download | pangemma-c65902a4e062689f03bb22e3b2d2526cf887750d.tar.gz |
add GXE test
Diffstat (limited to 'src/lapack.h')
-rw-r--r-- | src/lapack.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lapack.h b/src/lapack.h index cb7b156..e5a1d37 100644 --- a/src/lapack.h +++ b/src/lapack.h @@ -19,7 +19,7 @@ #ifndef __LAPACK_H__ #define __LAPACK_H__ - +#include <vector> using namespace std; @@ -47,7 +47,7 @@ double LULndet (gsl_matrix *LU); double LULndet (gsl_matrix_float *LU); void LUSolve (const gsl_matrix *LU, const gsl_permutation *p, const gsl_vector *b, gsl_vector *x); void LUSolve (const gsl_matrix_float *LU, const gsl_permutation *p, const gsl_vector_float *b, gsl_vector_float *x); -#endif - - +bool lapack_ddot(vector<double> &x, vector<double> &y, double &v); +bool lapack_sdot(vector<float> &x, vector<float> &y, double &v); +#endif |