From 04e0079d3b99e76c54569a6ee958b4606766c2d5 Mon Sep 17 00:00:00 2001
From: Oliver Sander <oliver.sander@tu-dresden.de>
Date: Thu, 5 Nov 2020 17:12:24 +0100
Subject: [PATCH] Get MPIHelper instance at the beginning of rod3d.cc

Otherwise the program aborts for the usual mysterious reasons.
---
 src/rod3d.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/rod3d.cc b/src/rod3d.cc
index f751d1df..b2a4c934 100644
--- a/src/rod3d.cc
+++ b/src/rod3d.cc
@@ -27,6 +27,8 @@ using namespace Dune;
 
 int main (int argc, char *argv[]) try
 {
+    MPIHelper::instance(argc, argv);
+
     typedef std::vector<RigidBodyMotion<double,3> > SolutionType;
 
     // parse data file
-- 
GitLab