From 4d1c53596fe1a32aa26fdf8ea04ca1cc66434e4e Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 31 May 2025 17:37:41 +0200 Subject: [PATCH] + --- lab10/jacobi/jacobi_mpi.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lab10/jacobi/jacobi_mpi.cpp b/lab10/jacobi/jacobi_mpi.cpp index b842746..f9376a4 100644 --- a/lab10/jacobi/jacobi_mpi.cpp +++ b/lab10/jacobi/jacobi_mpi.cpp @@ -156,7 +156,8 @@ Jacobi::Result JacobiMPI::run(const Matrix &init, double epsilon, nIter++; std::swap(t0, t1); - if (nIter == maxNumIter) { + if (nIter == 1741) { + std::cout << phi[t1] << std::endl; } }