Skip to content
Snippets Groups Projects
Commit f88d55de authored by Timo Koch's avatar Timo Koch
Browse files

[test][pm][solidenergy] Use Dumux::initialize

parent b4d6cfa6
No related branches found
No related tags found
1 merge request!2909Feature/multithreaded assembly using a coloring scheme
...@@ -28,6 +28,7 @@ ...@@ -28,6 +28,7 @@
#include <dune/common/parallel/mpihelper.hh> #include <dune/common/parallel/mpihelper.hh>
#include <dune/common/timer.hh> #include <dune/common/timer.hh>
#include <dumux/common/initialize.hh>
#include <dumux/common/properties.hh> #include <dumux/common/properties.hh>
#include <dumux/common/parameters.hh> #include <dumux/common/parameters.hh>
#include <dumux/common/dumuxmessage.hh> #include <dumux/common/dumuxmessage.hh>
...@@ -51,8 +52,9 @@ int main(int argc, char** argv) ...@@ -51,8 +52,9 @@ int main(int argc, char** argv)
// define the type tag for this problem // define the type tag for this problem
using TypeTag = Properties::TTag::SolidEnergyTest; using TypeTag = Properties::TTag::SolidEnergyTest;
// initialize MPI, finalize is done automatically on exit // maybe initialize MPI and/or multithreading backend
const auto& mpiHelper = Dune::MPIHelper::instance(argc, argv); Dumux::initialize(argc, argv);
const auto& mpiHelper = Dune::MPIHelper::instance();
// print dumux start message // print dumux start message
if (mpiHelper.rank() == 0) if (mpiHelper.rank() == 0)
......
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