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; + } } }