From: Lei Qiao Date: Sun, 12 Apr 2015 02:05:17 +0000 (-0500) Subject: step-33 sync right_hand_side after assemble. X-Git-Tag: v8.3.0-rc1~292^2~2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e8771d075f1446a88c03c5dd9178544f033099fd;p=dealii.git step-33 sync right_hand_side after assemble. --- diff --git a/examples/step-33/step-33.cc b/examples/step-33/step-33.cc index 56ff286bf7..4a580a21d3 100644 --- a/examples/step-33/step-33.cc +++ b/examples/step-33/step-33.cc @@ -1609,6 +1609,7 @@ namespace Step33 // After all this assembling, notify the Trilinos matrix object that the // matrix is done: system_matrix.compress(VectorOperation::add); + right_hand_side.compress(VectorOperation::add); }