Skip to content
Snippets Groups Projects

Remove deprecation warnings with dune 2.9

Merged Timo Koch requested to merge fix/deprecationwarnign-dune29 into master
3 files
+ 3
3
Compare changes
  • Side-by-side
  • Inline
Files
3
@@ -137,7 +137,7 @@ int main(int argc, char** argv)
@@ -137,7 +137,7 @@ int main(int argc, char** argv)
timer.stop();
timer.stop();
const auto& comm = Dune::MPIHelper::getCollectiveCommunication();
const auto& comm = leafGridView.comm();
std::cout << "Simulation took " << timer.elapsed() << " seconds on "
std::cout << "Simulation took " << timer.elapsed() << " seconds on "
<< comm.size() << " processes.\n"
<< comm.size() << " processes.\n"
<< "The cumulative CPU time was " << timer.elapsed()*comm.size() << " seconds.\n";
<< "The cumulative CPU time was " << timer.elapsed()*comm.size() << " seconds.\n";
Loading