From 0df22b0baea8abcb7bed5be10da7b67313dd7c56 Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 31 May 2025 17:49:32 +0200 Subject: [PATCH] + --- lab10/jacobi/jacobi_mpi.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/lab10/jacobi/jacobi_mpi.cpp b/lab10/jacobi/jacobi_mpi.cpp index 0db11d5..5862fd5 100644 --- a/lab10/jacobi/jacobi_mpi.cpp +++ b/lab10/jacobi/jacobi_mpi.cpp @@ -161,5 +161,6 @@ Jacobi::Result JacobiMPI::run(const Matrix &init, double epsilon, } } + // std::cout << phi[t1] << std::endl; return Jacobi::Result{phi[t1], dist, nIter}; }