From: Wolfgang Bangerth Date: Fri, 9 Jan 2015 07:26:10 +0000 (-0600) Subject: No need to initialize MPI for a program that neither uses MPI nor Trilinos. X-Git-Tag: v8.3.0-rc1~561^2~1 X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0006020dde02210ce7ce060ed62a2be825bed8b9;p=dealii.git No need to initialize MPI for a program that neither uses MPI nor Trilinos. --- diff --git a/examples/step-44/step-44.cc b/examples/step-44/step-44.cc index 5e32942af6..a5e4a0ee91 100644 --- a/examples/step-44/step-44.cc +++ b/examples/step-44/step-44.cc @@ -1,6 +1,6 @@ /* --------------------------------------------------------------------- * - * Copyright (C) 2010 - 2013 by the deal.II authors and + * Copyright (C) 2010 - 2013, 2015 by the deal.II authors and * & Jean-Paul Pelteret and Andrew McBride * * This file is part of the deal.II library. @@ -3166,14 +3166,11 @@ namespace Step44 // @sect3{Main function} // Lastly we provide the main driver function which appears // no different to the other tutorials. -int main (int argc, char *argv[]) +int main () { using namespace dealii; using namespace Step44; - Utilities::MPI::MPI_InitFinalize mpi_initialization (argc, argv, - dealii::numbers::invalid_unsigned_int); - try { deallog.depth_console(0);