From b782773c8590e088dabbd56e288cae934b312940 Mon Sep 17 00:00:00 2001 From: Martin Kronbichler Date: Sat, 2 May 2020 07:32:02 +0200 Subject: [PATCH] Fix step-40 test: Output n_dofs rather than IndexSet --- tests/mpi/step-40_direct_solver.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- 2.39.5