From: Martin Kronbichler Date: Mon, 16 Dec 2013 10:48:29 +0000 (+0000) Subject: Undo accidental check-in. X-Git-Tag: v8.2.0-rc1~1182 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f0b33bf6026d8c2a2c41aa2d739c1a3afa3b1b61;p=dealii.git Undo accidental check-in. git-svn-id: https://svn.dealii.org/trunk@32025 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/tests/deal.II/assemble_matrix_parallel_01.cc b/tests/deal.II/assemble_matrix_parallel_01.cc index 69f8fefa6d..6d842edf1b 100644 --- a/tests/deal.II/assemble_matrix_parallel_01.cc +++ b/tests/deal.II/assemble_matrix_parallel_01.cc @@ -319,9 +319,6 @@ LaplaceProblem::local_assemble (const typename hp::DoFHandler::active_ data.local_dof_indices.resize (dofs_per_cell); cell->get_dof_indices (data.local_dof_indices); - constraints.distribute_local_to_global(data.local_matrix, data.local_rhs, - data.local_dof_indices, - test_matrix, test_rhs); } @@ -330,6 +327,9 @@ template void LaplaceProblem::copy_local_to_global (const Assembly::Copy::Data &data) { + constraints.distribute_local_to_global(data.local_matrix, data.local_rhs, + data.local_dof_indices, + test_matrix, test_rhs); }