From a006f9b2991dfa6bb9df10c9822a7683dbfb3bf7 Mon Sep 17 00:00:00 2001 From: WickedJack99 Date: Sun, 29 Jun 2025 21:16:10 +0200 Subject: [PATCH] . --- lab12/exc4/jacobi.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lab12/exc4/jacobi.cpp b/lab12/exc4/jacobi.cpp index 904790d..096746b 100644 --- a/lab12/exc4/jacobi.cpp +++ b/lab12/exc4/jacobi.cpp @@ -75,7 +75,7 @@ void Jacobi::exchangeHaloLayers(Matrix &phi) } } -void Jacobi::exchangeHaloLayersNodeMPIProcFirst(Matrix &phi) +void Jacobi::exchangeHaloLayersNodeMPIProcSecond(Matrix &phi) { int n = phi.rows(); int sendSize = phi.cols(); @@ -129,7 +129,7 @@ void Jacobi::exchangeHaloLayersNodeMPIProcFirst(Matrix &phi) MPI_Waitall(req.size(), req.data(), stat.data()); } -void Jacobi::exchangeHaloLayersNodeMPIProcSecond(Matrix &phi) +void Jacobi::exchangeHaloLayersNodeMPIProcFirst(Matrix &phi) { int n = phi.rows(); int sendSize = phi.cols();