diff --git a/opm/core/linalg/LinearSolverIstl.cpp b/opm/core/linalg/LinearSolverIstl.cpp index 2e811bd5..eb3a8457 100644 --- a/opm/core/linalg/LinearSolverIstl.cpp +++ b/opm/core/linalg/LinearSolverIstl.cpp @@ -196,7 +196,7 @@ namespace Opm Vector b(opA.getmat().N()); std::copy(rhs, rhs+b.size(), b.begin()); // Make rhs consistent in the parallel case - comm.copyOwnerToOverlap(b,b); + comm.copyOwnerToAll(b,b); // System solution Vector x(opA.getmat().M()); x = 0.0;