aboutsummaryrefslogtreecommitdiff
path: root/src/ldr.cpp
diff options
context:
space:
mode:
authorPjotr Prins2017-10-14 06:00:55 +0000
committerPjotr Prins2017-10-14 06:00:55 +0000
commit0fe6d1332bf21a6be2c1beeb9fada6eb1a1ff244 (patch)
treea7699cf08b0547ea01ac1be82b15c55b1abecf69 /src/ldr.cpp
parentfdb48997ee3ed2b326a92f8e0cc7f72a4b38d8c8 (diff)
downloadpangemma-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/ldr.cpp')
-rw-r--r--src/ldr.cpp7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ldr.cpp b/src/ldr.cpp
index 3554efa..f70eb85 100644
--- a/src/ldr.cpp
+++ b/src/ldr.cpp
@@ -29,7 +29,7 @@
#include <stdio.h>
#include <stdlib.h>
-#include "Eigen/Dense"
+// #include "Eigen/Dense"
#include "gsl/gsl_blas.h"
#include "gsl/gsl_cdf.h"
#include "gsl/gsl_eigen.h"
@@ -46,7 +46,7 @@
#include "param.h"
using namespace std;
-using namespace Eigen;
+// using namespace Eigen;
void LDR::CopyFromParam(PARAM &cPar) {
a_mode = cPar.a_mode;
@@ -70,8 +70,10 @@ void LDR::CopyFromParam(PARAM &cPar) {
return;
}
+
void LDR::CopyToParam(PARAM &cPar) { return; }
+/*
// X is a p by n matrix.
void LDR::VB(const vector<vector<unsigned char>> &Xt, const gsl_matrix *W_gsl,
const gsl_vector *y_gsl) {
@@ -107,3 +109,4 @@ void LDR::VB(const vector<vector<unsigned char>> &Xt, const gsl_matrix *W_gsl,
return;
}
+*/