From: Wolfgang Bangerth Date: Fri, 8 Apr 2005 22:17:28 +0000 (+0000) Subject: Add forgotten call to compress(). X-Git-Tag: v8.0.0~14090 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5972e2eaa144b67b1580784e15a0e97bad2ccce3;p=dealii.git Add forgotten call to compress(). git-svn-id: https://svn.dealii.org/trunk@10457 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-17/step-17.cc b/deal.II/examples/step-17/step-17.cc index 8df87caa1e..439602c22b 100644 --- a/deal.II/examples/step-17/step-17.cc +++ b/deal.II/examples/step-17/step-17.cc @@ -963,6 +963,10 @@ void ElasticProblem::assemble_system () = (boundary_value->second / system_matrix.diag_element (boundary_value->first)); } + + // At the end, compress the + // so-modified vector again: + system_rhs.compress (); }