From d03d7e00df9b873cbc44117edddbe49690ffeac3 Mon Sep 17 00:00:00 2001 From: bangerth Date: Fri, 4 Oct 2013 19:58:21 +0000 Subject: [PATCH] Make run again in parallel. git-svn-id: https://svn.dealii.org/trunk@31125 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-42/step-42.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deal.II/examples/step-42/step-42.cc b/deal.II/examples/step-42/step-42.cc index 2e3d207e6b..d67041358e 100644 --- a/deal.II/examples/step-42/step-42.cc +++ b/deal.II/examples/step-42/step-42.cc @@ -1020,8 +1020,8 @@ namespace Step42 TimerOutput::Scope t(computing_timer, "Setup: vectors"); solution.reinit(locally_relevant_dofs, mpi_communicator); newton_rhs.reinit(locally_owned_dofs, mpi_communicator); - newton_rhs_uncondensed.reinit(locally_relevant_dofs, mpi_communicator); - diag_mass_matrix_vector.reinit(locally_relevant_dofs, mpi_communicator); + newton_rhs_uncondensed.reinit(locally_owned_dofs, mpi_communicator); + diag_mass_matrix_vector.reinit(locally_owned_dofs, mpi_communicator); fraction_of_plastic_q_points_per_cell.reinit(triangulation.n_active_cells()); active_set.clear(); active_set.set_size(locally_relevant_dofs.size()); -- 2.39.5