[fixup] Use the correct function.

This should have been in the las commit and should be added there before
merging.
This commit is contained in:
Markus Blatt 2015-02-13 11:00:28 +01:00
parent 50aba2c8f6
commit a35b2f2b7c

View File

@ -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;