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