From a019a75fcff3e4a5467e3d577c68f5f565a1eaaf Mon Sep 17 00:00:00 2001 From: Wolfgang Bangerth Date: Mon, 5 Jan 2015 10:05:31 -0600 Subject: [PATCH] This program does not use MPI. Don't pretend that we do. --- examples/step-43/step-43.cc | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/examples/step-43/step-43.cc b/examples/step-43/step-43.cc index d7bb278d7f..59b63810a0 100644 --- a/examples/step-43/step-43.cc +++ b/examples/step-43/step-43.cc @@ -1,6 +1,6 @@ /* --------------------------------------------------------------------- * - * Copyright (C) 2010 - 2013 by the deal.II authors + * Copyright (C) 2010 - 2013, 2015 by the deal.II authors * * This file is part of the deal.II library. * @@ -2241,10 +2241,8 @@ start_time_iteration: // @sect3{The main() function} // -// The main function looks almost the same as in all other programs. In -// particular, it is essentially the same as in step-31 where we also explain -// the need to initialize the MPI subsystem. -int main (int argc, char *argv[]) +// The main function looks almost the same as in all other programs: +int main () { try { @@ -2253,8 +2251,6 @@ int main (int argc, char *argv[]) deallog.depth_console (0); - Utilities::MPI::MPI_InitFinalize mpi_initialization (argc, argv); - TwoPhaseFlowProblem<2> two_phase_flow_problem(1); two_phase_flow_problem.run (); } -- 2.39.5