From: Timo Heister Date: Tue, 19 May 2020 13:45:35 +0000 (-0400) Subject: step-70: add missing compress() call X-Git-Tag: v9.2.0~7^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=55c0f32cd65326159e372621f71ef12eb0c19dd2;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); }