revert rec depth fix

This commit is contained in:
Robin Dietzel 2023-11-07 12:06:28 +01:00
parent aa0ab7a4b1
commit 599bf584bb

View File

@ -77,7 +77,7 @@ auto main(int argc, char *argv[]) -> int {
auto t_par = std::chrono::duration_cast<std::chrono::milliseconds>(t2 - t1);
fmt::print("\nSorted {} entries within {} ms in parallel on a system having {} threads and a recursion depth of {}"
"\nresulting in a total count of {} threads",
dataset_seq.size(), t_par.count(), threads, max_depth, std::pow(2, max_depth + 1));
dataset_seq.size(), t_par.count(), threads, max_depth, std::pow(2, max_depth));
auto eq = (dataset_seq == dataset_par);
fmt::print("\nCheck whether sorted arrays are equal: {}", (eq) ? "Equal" : "not equal");