From 13839be54db5a77e76fc6c3e0f896baeb6a5c958 Mon Sep 17 00:00:00 2001 From: wolf Date: Fri, 8 Apr 2005 22:17:28 +0000 Subject: [PATCH] Add forgotten call to compress(). git-svn-id: https://svn.dealii.org/trunk@10457 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-17/step-17.cc | 4 ++++ 1 file changed, 4 insertions(+) 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 (); } -- 2.39.5