From 55bcc040612bb2a056bffa009313c25c59e1bc87 Mon Sep 17 00:00:00 2001 From: kai Date: Sat, 31 May 2025 17:18:13 +0200 Subject: [PATCH] + --- lab10/jacobi/jacobi_mpi.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lab10/jacobi/jacobi_mpi.cpp b/lab10/jacobi/jacobi_mpi.cpp index 4fc975c..be722fe 100644 --- a/lab10/jacobi/jacobi_mpi.cpp +++ b/lab10/jacobi/jacobi_mpi.cpp @@ -76,7 +76,9 @@ Jacobi::Result JacobiMPI::run(const Matrix &init, double epsilon, std::cout << phi[t1](i, j); } } - std::cout << std::endl; + if (nIter == 50) { + std::cout << std::endl; + } } }