From: Wolfgang Bangerth Date: Mon, 5 Jan 2015 16:05:31 +0000 (-0600) Subject: This program does not use MPI. Don't pretend that we do. X-Git-Tag: v8.3.0-rc1~569^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a019a75fcff3e4a5467e3d577c68f5f565a1eaaf;p=dealii.git This program does not use MPI. Don't pretend that we do. --- 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 (); }