Skip to content
Snippets Groups Projects
Commit d3b4016e authored by Christoph Grüninger's avatar Christoph Grüninger
Browse files

Added code paths for MPIHelper inclusion, needed for Dune 2.3 (+ 1).

(reviewed by bernd)


git-svn-id: svn://svn.iws.uni-stuttgart.de/DUMUX/dumux/trunk@9735 2fb0f335-1f38-0410-981e-8018bf24f1b0
parent 9604918e
No related branches found
No related tags found
No related merge requests found
...@@ -26,7 +26,12 @@ ...@@ -26,7 +26,12 @@
#include <iostream> #include <iostream>
#include <dune/common/exceptions.hh> #include <dune/common/exceptions.hh>
#include <dune/common/version.hh>
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
#include <dune/common/parallel/mpihelper.hh>
#else
#include <dune/common/mpihelper.hh> #include <dune/common/mpihelper.hh>
#endif
#include <dune/grid/common/gridinfo.hh> #include <dune/grid/common/gridinfo.hh>
#include "test_diffusionproblem.hh" #include "test_diffusionproblem.hh"
......
...@@ -24,14 +24,18 @@ ...@@ -24,14 +24,18 @@
*/ */
#include "config.h" #include "config.h"
#include "test_multiphysics2p2cproblem.hh" #include <iostream>
#include <dune/grid/common/gridinfo.hh>
#include <dune/common/exceptions.hh> #include <dune/common/exceptions.hh>
#include <dune/common/version.hh>
#if DUNE_VERSION_NEWER(DUNE_COMMON, 2, 3)
#include <dune/common/parallel/mpihelper.hh>
#else
#include <dune/common/mpihelper.hh> #include <dune/common/mpihelper.hh>
#endif
#include <dune/grid/common/gridinfo.hh>
#include <iostream> #include "test_multiphysics2p2cproblem.hh"
//////////////////////// ////////////////////////
// the main function // the main function
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment