Skip to content

Commit ecab70d

Browse files
committed
delete unnecesary timing in test
1 parent 01c585f commit ecab70d

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/tests/class_tests/openms/source/AScore_test.cpp

+1-4
Original file line numberDiff line numberDiff line change
@@ -567,13 +567,10 @@ START_SECTION(calculateCumulativeBinominalProbabilityScore)
567567
{
568568
n_first += ptr_test->numberOfMatchedIonsTest_(site_determining_ions[0], windows_top10[depth], s_it->peak_depth);
569569
}
570-
// check time to compute
571-
double init_time = clock();
570+
572571
double P_first = ptr_test->computeCumulativeScoreTest_(N, n_first, p);
573572
P_first = -10 * log10(P_first);
574573
TEST_REAL_SIMILAR(P_first, 53.5336889240929);
575-
// print time took to compute
576-
cout << "Time to compute: " << (clock() - init_time) / CLOCKS_PER_SEC << " seconds" << endl;
577574
}
578575
}
579576
END_SECTION

0 commit comments

Comments
 (0)