From 1accff081f708d70ee258ab6b403b4d512510d9b Mon Sep 17 00:00:00 2001
From: JordanHanotiaux <103147288+JordanHanotiaux@users.noreply.github.com>
Date: Sat, 12 Apr 2025 11:22:20 +0200
Subject: [PATCH] Update distributedtests.cpp

---
 P2/distributedtests.cpp | 9 ---------
 1 file changed, 9 deletions(-)

diff --git a/P2/distributedtests.cpp b/P2/distributedtests.cpp
index e111541..e3d8ca7 100644
--- a/P2/distributedtests.cpp
+++ b/P2/distributedtests.cpp
@@ -58,15 +58,6 @@ void testMultiplyTransposed() {
     
     // Compute expected result
     Matrix expectedMatrix = matrix1Full * matrix2Full.transpose();
-    if (rank == 0) { // pour éviter que tous les processus n'impriment
-        std::cout << "Résultat espere:" << std::endl;
-        for (int i = 0; i < expectedMatrix.numRows(); ++i) {
-            for (int j = 0; j < expectedMatrix.numCols(); ++j) {
-                std::cout << expectedMatrix.get(i, j) << " ";
-            }
-            std::cout << std::endl;
-        }
-    }
 
     // Compute A * B^T
     Matrix result = matrix1.multiplyTransposed(matrix2);
-- 
GitLab