From: Timo Heister Date: Tue, 13 Aug 2013 19:55:44 +0000 (+0000) Subject: add missing compress() call in step-32 X-Git-Tag: v8.1.0~1068 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=219fdd7b71413b9dd2a7ed16d01292fd8220e9fe;p=dealii.git add missing compress() call in step-32 git-svn-id: https://svn.dealii.org/trunk@30306 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-32/step-32.cc b/deal.II/examples/step-32/step-32.cc index 147623c0f0..0c7ccc8a8f 100644 --- a/deal.II/examples/step-32/step-32.cc +++ b/deal.II/examples/step-32/step-32.cc @@ -3328,7 +3328,8 @@ namespace Step32 } } } - + + joint_solution.compress(VectorOperation::insert); IndexSet locally_relevant_joint_dofs(joint_dof_handler.n_dofs()); DoFTools::extract_locally_relevant_dofs (joint_dof_handler, locally_relevant_joint_dofs);