From: heister Date: Wed, 19 Oct 2011 16:36:50 +0000 (+0000) Subject: fix step-41 when using mpi X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=159192e7f83dcb23fd73644b197b55e3d4f069ab;p=dealii-svn.git fix step-41 when using mpi git-svn-id: https://svn.dealii.org/trunk@24645 0785d39b-7218-0410-832d-ea1e28bc413d --- diff --git a/deal.II/examples/step-41/step-41.cc b/deal.II/examples/step-41/step-41.cc index 885346b30e..34f366248b 100644 --- a/deal.II/examples/step-41/step-41.cc +++ b/deal.II/examples/step-41/step-41.cc @@ -941,9 +941,11 @@ void Step4::run () // written. By changing it you can get more // information about the innards of the // library. -int main () +int main (int argc, char *argv[]) { deallog.depth_console (0); + Utilities::MPI::MPI_InitFinalize mpi_initialization(argc, argv); + { Step4<2> laplace_problem_2d; laplace_problem_2d.run ();