Skip to content
Snippets Groups Projects
Commit 969cbb03 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

(cherry picked from commit d2f7d2c9)

6cd49d4a Remove deprecation warnings with dune 2.9
parent a75b94d4
No related branches found
No related tags found
2 merge requests!136Merge branch 'fix-biomin-someobviousindescription' into 'master',!134Merge branch 'fix/deprecationwarnign-dune29' into 'master'
Pipeline #24984 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