From 65b616bf8be07a16cf4b03c518c58b90014f2611 Mon Sep 17 00:00:00 2001 From: danshapero Date: Mon, 12 Oct 2015 14:47:55 -0700 Subject: [PATCH] Fix bug in compute_integrid_weights_2 --- source/dofs/dof_tools_constraints.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } -- 2.39.5