diff options
author | Pjotr Prins | 2017-09-12 04:34:58 +0200 |
---|---|---|
committer | GitHub | 2017-09-12 04:34:58 +0200 |
commit | a98b5c66122833be4e57543bd3d11cd1a71b5ed6 (patch) | |
tree | 044c46ecf63df5ba7ab36ee69ab4edc597371330 | |
parent | ffc99d62013b1a5025b21cc385dd9892360ebe49 (diff) | |
parent | e282ca59bfff485d0532e66f9efbd8c8c58c60f4 (diff) | |
download | pangemma-a98b5c66122833be4e57543bd3d11cd1a71b5ed6.tar.gz |
Merge pull request #83 from genenetwork/master
Show GSL and Eigen versions in .log output
-rw-r--r-- | src/gemma.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/gemma.cpp b/src/gemma.cpp index 5983461..e3fb005 100644 --- a/src/gemma.cpp +++ b/src/gemma.cpp @@ -30,6 +30,7 @@ #include "gsl/gsl_linalg.h" #include "gsl/gsl_matrix.h" #include "gsl/gsl_vector.h" +#include "gsl/gsl_version.h" #include "bslmm.h" #include "bslmmdap.h" @@ -3102,6 +3103,8 @@ void GEMMA::WriteLog(int argc, char **argv, PARAM &cPar) { outfile << "##" << endl; outfile << "## GEMMA Version = " << version << endl; + outfile << "## GSL Version = " << GSL_VERSION << endl; + outfile << "## Eigen Version = " << EIGEN_WORLD_VERSION << "." << EIGEN_MAJOR_VERSION << "." << EIGEN_MINOR_VERSION << endl; outfile << "##" << endl; outfile << "## Command Line Input = "; |