From 10cc3c77d5f6d385807f019b7894d4b87820cab4 Mon Sep 17 00:00:00 2001 From: Pjotr Prins Date: Sat, 15 Sep 2018 11:59:49 +0000 Subject: Using Guix container to build with gcc and clang --- src/mathfunc.cpp | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/mathfunc.cpp') diff --git a/src/mathfunc.cpp b/src/mathfunc.cpp index 8acbd52..21d5c09 100644 --- a/src/mathfunc.cpp +++ b/src/mathfunc.cpp @@ -604,18 +604,3 @@ double UcharToDouble02(const unsigned char c) { return (double)c * 0.01; } unsigned char Double02ToUchar(const double dosage) { return (int)(dosage * 100); } - -/* -void uchar_matrix_get_row(const vector> &X, - const size_t i_row, VectorXd &x_row) { - if (i_row < X.size()) { - for (size_t j = 0; j < x_row.size(); j++) { - x_row(j) = UcharToDouble02(X[i_row][j]); - } - } else { - std::cerr << "Error return genotype vector...\n"; - exit(1); - } -} - -*/ -- cgit v1.2.3