From c7e28f57ec4d96347e9d565f6670edfbf30d5843 Mon Sep 17 00:00:00 2001 From: kai Date: Sun, 1 Jun 2025 12:54:00 +0200 Subject: [PATCH] return t0 --- lab10/jacobi/jacobi_mpi.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lab10/jacobi/jacobi_mpi.cpp b/lab10/jacobi/jacobi_mpi.cpp index 922c0cd..30e5401 100644 --- a/lab10/jacobi/jacobi_mpi.cpp +++ b/lab10/jacobi/jacobi_mpi.cpp @@ -162,5 +162,5 @@ Jacobi::Result JacobiMPI::run(const Matrix &init, double epsilon, } // std::cout << phi[t1] << std::endl; - return Jacobi::Result{phi[t1], dist, nIter}; + return Jacobi::Result{phi[t0], dist, nIter}; }