From: Timo Heister Date: Tue, 19 May 2020 13:45:35 +0000 (-0400) Subject: step-70: add missing compress() call X-Git-Tag: v9.3.0-rc1~1609^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=733a543f081143998f3c4555b93530e3c7e7fc1a;p=dealii.git step-70: add missing compress() call fixes #10270 --- diff --git a/examples/step-70/step-70.cc b/examples/step-70/step-70.cc index 7ab7f5faff..89c7c52053 100644 --- a/examples/step-70/step-70.cc +++ b/examples/step-70/step-70.cc @@ -1551,6 +1551,9 @@ namespace Step70 system_rhs); particle = pic.end(); } + + system_matrix.compress(VectorOperation::add); + system_rhs.compress(VectorOperation::add); }