From 159192e7f83dcb23fd73644b197b55e3d4f069ab Mon Sep 17 00:00:00 2001 From: heister Date: Wed, 19 Oct 2011 16:36:50 +0000 Subject: [PATCH] fix step-41 when using mpi git-svn-id: https://svn.dealii.org/trunk@24645 0785d39b-7218-0410-832d-ea1e28bc413d --- deal.II/examples/step-41/step-41.cc | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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 (); -- 2.39.5