From 69063badbbf4a1af442bbdd2f6cae837e3941c2e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Tue, 3 Sep 2024 12:54:09 +0200 Subject: [PATCH] Fix status error in holm.tex --- src/best/BestResultsTex.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/best/BestResultsTex.cpp b/src/best/BestResultsTex.cpp index 985d135..2327d84 100644 --- a/src/best/BestResultsTex.cpp +++ b/src/best/BestResultsTex.cpp @@ -105,7 +105,7 @@ namespace platform { if (line.model == holmResult.model) { handler << line.model << " & - & " << std::fixed << std::setprecision(2) << line.rank << " & - & - & - \\\\" << std::endl; } else { - handler << line.model << " & " << std::scientific << std::setprecision(4) << line.pvalue << " & "; + handler << line.model << " & " << textStatus << std::scientific << std::setprecision(4) << line.pvalue << " & "; handler << std::fixed << std::setprecision(2) << line.rank << " & " << line.wtl.win << " & " << line.wtl.tie << " & " << line.wtl.loss << "\\\\" << std::endl; } }