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

[examples][pnm] Add missing initialize call

parent 8d1c4816
No related branches found
No related tags found
1 merge request!3530[example][pnm] Two fixes for the example
Checking pipeline status
......@@ -249,6 +249,9 @@ int main(int argc, char** argv)
{
using namespace Dumux;
// Initialize MPI+X environment
Dumux::initialize(argc, argv);
// We parse the command line arguments.
Parameters::init(argc, argv);
......
......@@ -223,6 +223,9 @@ int main(int argc, char** argv)
{
using namespace Dumux;
// Initialize MPI+X environment
Dumux::initialize(argc, argv);
// We parse the command line arguments.
Parameters::init(argc, argv);
......
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