From: bangerth Date: Fri, 4 Oct 2013 19:58:21 +0000 (+0000) Subject: Make run again in parallel. X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d03d7e00df9b873cbc44117edddbe49690ffeac3;p=dealii-svn.git Make run again in parallel. git-svn-id: https://svn.dealii.org/trunk@31125 0785d39b-7218-0410-832d-ea1e28bc413d --- 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());