commit | 30e4d5f6b09da90a8f9b7ba578f0575f2dc3cec4 | [log] [tgz] |
---|---|---|
author | Marc Kupietz <kupietz@ids-mannheim.de> | Fri Feb 26 09:27:49 2021 +0100 |
committer | Marc Kupietz <kupietz@ids-mannheim.de> | Fri Feb 26 09:27:49 2021 +0100 |
tree | be9513a33b61d7efbdeffaf33985a72f94d1d341 | |
parent | 6d0fa54a442813b0ab18df91b906446f11c91f77 [diff] [blame] |
CollocatorDB: Debug output only if in debug mode
diff --git a/collocatordb.cc b/collocatordb.cc index 62ab521..43e1889 100644 --- a/collocatordb.cc +++ b/collocatordb.cc
@@ -670,6 +670,7 @@ // #pragma omp taskwait sort(collocators.begin(), collocators.end(), sortByLogDiceAF); + #ifdef DEBUG int i=0; for (Collocator c : collocators) { if(i++>10) break; @@ -685,6 +686,7 @@ << "\t total:" << total << std::endl; } + #endif return collocators; }