From a6b6efce95d2ea246997331717555cf8568a0138 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Sun, 25 May 2025 10:41:36 +0200 Subject: [PATCH] Remove uneeded output in Statistics --- src/best/Statistics.cpp | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/best/Statistics.cpp b/src/best/Statistics.cpp index 04418ce..1fa16ad 100644 --- a/src/best/Statistics.cpp +++ b/src/best/Statistics.cpp @@ -160,8 +160,11 @@ namespace platform { auto wilcoxon = WilcoxonTest(models, datasets, data, significance); controlIdx = wilcoxon.getControlIdx(); postHocResults = wilcoxon.getPostHocResults(); - std::cout << std::string(80, '=') << std::endl; setResultsOrder(); + // Fill the ranks info + for (const auto& item : postHocResults) { + ranks[item.model] = item.rank; + } Holm_Bonferroni(); restoreResultsOrder(); }