From: danshapero Date: Mon, 12 Oct 2015 21:47:55 +0000 (-0700) Subject: Fix bug in compute_integrid_weights_2 X-Git-Tag: v8.4.0-rc2~319^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=65b616bf8be07a16cf4b03c518c58b90014f2611;p=dealii.git Fix bug in compute_integrid_weights_2 --- diff --git a/source/dofs/dof_tools_constraints.cc b/source/dofs/dof_tools_constraints.cc index cf74c4b2c6..a8d80789f5 100644 --- a/source/dofs/dof_tools_constraints.cc +++ b/source/dofs/dof_tools_constraints.cc @@ -2736,7 +2736,7 @@ namespace DoFTools (locally_owned_dofs, locally_relevant_dofs, communicator); #else const types::global_dof_index n_fine_dofs = weight_mapping.size(); - copy_data.global_parameter_representation[i].resize (n_fine_dofs); + copy_data.global_parameter_representation[i].reinit (n_fine_dofs); #endif }