From: Martin Kronbichler Date: Sat, 2 May 2020 05:32:02 +0000 (+0200) Subject: Fix step-40 test: Output n_dofs rather than IndexSet X-Git-Tag: v9.2.0-rc1~144^2 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F10011%2Fhead;p=dealii.git Fix step-40 test: Output n_dofs rather than IndexSet --- diff --git a/tests/mpi/step-40_direct_solver.cc b/tests/mpi/step-40_direct_solver.cc index 428ff3be18..c34f96614e 100644 --- a/tests/mpi/step-40_direct_solver.cc +++ b/tests/mpi/step-40_direct_solver.cc @@ -307,7 +307,7 @@ namespace Step40 i < Utilities::MPI::n_mpi_processes(mpi_communicator); ++i) pcout << Utilities::MPI::all_gather( - mpi_communicator, dof_handler.locally_owned_dofs())[i] + mpi_communicator, dof_handler.n_locally_owned_dofs())[i] << '+'; pcout << std::endl;