diff options
author | Peter Carbonetto | 2017-05-30 22:36:50 -0500 |
---|---|---|
committer | Peter Carbonetto | 2017-05-30 22:36:50 -0500 |
commit | 3f5d57d302188525f266ec041ebb745f6931876e (patch) | |
tree | 853d6aafccc41ba36f6d1e328c333cd6081fbd7f /src/eigenlib.h | |
parent | 5252c296a389f296e97d95e56f13b77351b32bec (diff) | |
download | pangemma-3f5d57d302188525f266ec041ebb745f6931876e.tar.gz |
Removing FORCE_FLOAT from some C++ source files.
Diffstat (limited to 'src/eigenlib.h')
-rw-r--r-- | src/eigenlib.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/eigenlib.h b/src/eigenlib.h index e9768c2..493907c 100644 --- a/src/eigenlib.h +++ b/src/eigenlib.h @@ -1,6 +1,6 @@ /* - Genome-wide Efficient Mixed Model Association (GEMMA) - Copyright (C) 2011 Xiang Zhou + Genome-wide Efficient Mixed Model Association (GEMMA) + Copyright (C) 2011-2017 Xiang Zhou This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -13,7 +13,7 @@ GNU General Public License for more details. You should have received a copy of the GNU General Public License - along with this program. If not, see <http://www.gnu.org/licenses/>. + along with this program. If not, see <http://www.gnu.org/licenses/>. */ #ifndef __EIGENLIB_H__ @@ -23,12 +23,10 @@ using namespace std; - void eigenlib_dgemm (const char *TransA, const char *TransB, const double alpha, const gsl_matrix *A, const gsl_matrix *B, const double beta, gsl_matrix *C); void eigenlib_dgemv (const char *TransA, const double alpha, const gsl_matrix *A, const gsl_vector *x, const double beta, gsl_vector *y); void eigenlib_invert(gsl_matrix *A); void eigenlib_dsyr (const double alpha, const gsl_vector *b, gsl_matrix *A); void eigenlib_eigensymm (const gsl_matrix *G, gsl_matrix *U, gsl_vector *eval); - #endif |