Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux-course
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
dumux-repositories
dumux-course
Merge requests
!133
Remove deprecation warnings with dune 2.9
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Remove deprecation warnings with dune 2.9
fix/deprecationwarnign-dune29
into
master
Overview
0
Commits
1
Pipelines
1
Changes
3
Merged
Timo Koch
requested to merge
fix/deprecationwarnign-dune29
into
master
2 years ago
Overview
0
Commits
1
Pipelines
1
Changes
3
Expand
0
0
Merge request reports
Viewing commit
6cd49d4a
Show latest version
3 files
+
3
−
3
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
6cd49d4a
Remove deprecation warnings with dune 2.9
· 6cd49d4a
Timo Koch
authored
2 years ago
exercises/exercise-mainfile/exercise1pamain.cc
+
1
−
1
Options
@@ -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