diff options
author | Pjotr Prins | 2017-10-14 06:00:55 +0000 |
---|---|---|
committer | Pjotr Prins | 2017-10-14 06:00:55 +0000 |
commit | 0fe6d1332bf21a6be2c1beeb9fada6eb1a1ff244 (patch) | |
tree | a7699cf08b0547ea01ac1be82b15c55b1abecf69 /src/vc.cpp | |
parent | fdb48997ee3ed2b326a92f8e0cc7f72a4b38d8c8 (diff) | |
download | pangemma-0fe6d1332bf21a6be2c1beeb9fada6eb1a1ff244.tar.gz |
More disabling of eigenlib (faster compilation) and avoid OPENBLAS_CONST which does not work on older cblas.h
Diffstat (limited to 'src/vc.cpp')
-rw-r--r-- | src/vc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -41,7 +41,7 @@ #include "gsl/gsl_min.h" #include "gsl/gsl_multiroots.h" -#include "Eigen/Dense" +// #include "Eigen/Dense" #include "eigenlib.h" #include "gzstream.h" @@ -53,7 +53,7 @@ #include "vc.h" using namespace std; -using namespace Eigen; +// using namespace Eigen; // In this file, X, Y are already transformed (i.e. UtX and UtY). void VC::CopyFromParam(PARAM &cPar) { |