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

Merge branch 'fix/deprecationwarnign-dune29' into 'master'

Remove deprecation warnings with dune 2.9

See merge request !133
parents cac5c966 6cd49d4a
No related branches found
No related tags found
1 merge request!133Remove deprecation warnings with dune 2.9
Pipeline #24980 passed
......@@ -137,7 +137,7 @@ int main(int argc, char** argv)
timer.stop();
const auto& comm = Dune::MPIHelper::getCollectiveCommunication();
const auto& comm = leafGridView.comm();
std::cout << "Simulation took " << timer.elapsed() << " seconds on "
<< comm.size() << " processes.\n"
<< "The cumulative CPU time was " << timer.elapsed()*comm.size() << " seconds.\n";
......
......@@ -127,7 +127,7 @@ int main(int argc, char** argv)
timer.stop();
const auto& comm = Dune::MPIHelper::getCollectiveCommunication();
const auto& comm = leafGridView.comm();
std::cout << "Simulation took " << timer.elapsed() << " seconds on "
<< comm.size() << " processes.\n"
<< "The cumulative CPU time was " << timer.elapsed()*comm.size() << " seconds.\n";
......
......@@ -139,7 +139,7 @@ int main(int argc, char** argv)
timer.stop();
const auto& comm = Dune::MPIHelper::getCollectiveCommunication();
const auto& comm = leafGridView.comm();
std::cout << "Simulation took " << timer.elapsed() << " seconds on "
<< comm.size() << " processes.\n"
<< "The cumulative CPU time was " << timer.elapsed()*comm.size() << " seconds.\n";
......
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