diff options
author | Pjotr Prins | 2021-08-25 12:28:58 +0200 |
---|---|---|
committer | Pjotr Prins | 2021-08-25 12:28:58 +0200 |
commit | 8d010946a77e961ec58034b590bb3f13ab20a57f (patch) | |
tree | bbefd5936fe20cd0465935a455758798390fcb0f /src/mvlmm.cpp | |
parent | 43bbfda6253d1c5b88cb4ef5c092eb8be716592f (diff) | |
download | pangemma-8d010946a77e961ec58034b590bb3f13ab20a57f.tar.gz |
Disable debugging output
Diffstat (limited to 'src/mvlmm.cpp')
-rw-r--r-- | src/mvlmm.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mvlmm.cpp b/src/mvlmm.cpp index 51ed901..1d05bf1 100644 --- a/src/mvlmm.cpp +++ b/src/mvlmm.cpp @@ -3666,7 +3666,7 @@ void MVLMM::AnalyzePlink(const gsl_matrix *U, const gsl_vector *eval, t_last++; } for (vector<SNPINFO>::size_type t = 0; t < snpInfo.size(); ++t) { - cout << snpInfo[t].rs_number << endl; + // cout << snpInfo[t].rs_number << endl; if (t % d_pace == 0 || t == snpInfo.size() - 1) { ProgressBar("Reading SNPs", t, snpInfo.size() - 1); @@ -3754,10 +3754,10 @@ void MVLMM::AnalyzePlink(const gsl_matrix *U, const gsl_vector *eval, gsl_matrix_set_zero(Xlarge); for (size_t i = 0; i < l; i++) { - double t = (double(clock()-time_start)/(double(CLOCKS_PER_SEC))); - printf("%.2f ",t); - if (i>10) exit(1); - cout << i << "," << l << endl; + // double t = (double(clock()-time_start)/(double(CLOCKS_PER_SEC))); + // printf("%.2f ",t); + // if (i>10) exit(1); + // cout << i << "," << l << endl; gsl_vector_view UtXlarge_col = gsl_matrix_column(UtXlarge, i); gsl_vector_memcpy(&X_row.vector, &UtXlarge_col.vector); |