From: wolf Date: Fri, 8 Apr 2005 22:17:28 +0000 (+0000) Subject: Add forgotten call to compress(). X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=13839be54db5a77e76fc6c3e0f896baeb6a5c958;p=dealii-svn.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 (); }