about summary refs log tree commit diff
path: root/src/mathfunc.h
diff options
context:
space:
mode:
authorPeter Carbonetto2017-06-02 06:42:30 -0500
committerPeter Carbonetto2017-06-02 06:42:30 -0500
commit079d7deb888936fe174746d1efd7cd7ed6a511dd (patch)
tree5c0e1e733878d809cfb92b3db77a74577859a773 /src/mathfunc.h
parentbfe06c298c1b9e8be12df91e4f1c9a8e5c459562 (diff)
downloadpangemma-079d7deb888936fe174746d1efd7cd7ed6a511dd.tar.gz
Removed FORCE_FLOAT from mathfunc.*
Diffstat (limited to 'src/mathfunc.h')
-rw-r--r--src/mathfunc.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/mathfunc.h b/src/mathfunc.h
index 84f3186..b24364b 100644
--- a/src/mathfunc.h
+++ b/src/mathfunc.h
@@ -1,6 +1,6 @@
 /*
  Genome-wide Efficient Mixed Model Association (GEMMA)
- Copyright (C) 2011  Xiang Zhou
+ 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
@@ -14,7 +14,7 @@
 
  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
- */
+*/
 
 #ifndef __MATHFUNC_H__
 #define __MATHFUNC_H__
@@ -44,6 +44,7 @@ void KroneckerSym(const gsl_matrix *K, const gsl_matrix *V, gsl_matrix *H);
 
 double UcharToDouble02(const unsigned char c);
 unsigned char Double02ToUchar(const double dosage);
-void uchar_matrix_get_row (const vector<vector<unsigned char> > &X, const size_t i_row, VectorXd &x_row);
+void uchar_matrix_get_row (const vector<vector<unsigned char> > &X,
+			   const size_t i_row, VectorXd &x_row);
 
 #endif