diff options
author | Pjotr Prins | 2017-09-12 02:10:00 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-09-12 02:10:00 +0000 |
commit | e282ca59bfff485d0532e66f9efbd8c8c58c60f4 (patch) | |
tree | 044c46ecf63df5ba7ab36ee69ab4edc597371330 /src | |
parent | ffc99d62013b1a5025b21cc385dd9892360ebe49 (diff) | |
download | pangemma-e282ca59bfff485d0532e66f9efbd8c8c58c60f4.tar.gz |
Show GSL and Eigen versions in .log output
Diffstat (limited to 'src')
-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 = "; |