From f5107abea7756e06f2c162706002dc0031b0355e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ricardo=20Monta=C3=B1ana=20G=C3=B3mez?= Date: Wed, 14 May 2025 14:02:53 +0200 Subject: [PATCH] Add comment in Statistics --- src/best/Statistics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/best/Statistics.cpp b/src/best/Statistics.cpp index 73f1edb..397b679 100644 --- a/src/best/Statistics.cpp +++ b/src/best/Statistics.cpp @@ -91,7 +91,7 @@ namespace platform { } void Statistics::computeWTL() { - // Compute the WTL matrix + // Compute the WTL matrix (Win Tie Loss) for (int i = 0; i < nModels; ++i) { wtl[i] = { 0, 0, 0 }; }