Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
dumux
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
Commits
8e7eb37c
Commit
8e7eb37c
authored
7 years ago
by
Dennis Gläser
Browse files
Options
Downloads
Patches
Plain Diff
[mpfa-o][iv] make numIVsAtVertex function constexpr
parent
0cd420da
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!774
Cleanup/mpfa
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/cellcentered/mpfa/omethod/interactionvolume.hh
+2
-1
2 additions, 1 deletion
...retization/cellcentered/mpfa/omethod/interactionvolume.hh
with
2 additions
and
1 deletion
dumux/discretization/cellcentered/mpfa/omethod/interactionvolume.hh
+
2
−
1
View file @
8e7eb37c
...
...
@@ -295,7 +295,8 @@ public:
//! returns the number of interaction volumes living around a vertex
//! the mpfa-o scheme always constructs one iv per vertex
template
<
class
NodalIndexSet
>
static
std
::
size_t
numInteractionVolumesAtVertex
(
const
NodalIndexSet
&
nodalIndexSet
)
{
return
1
;
}
static
constexpr
std
::
size_t
numInteractionVolumesAtVertex
(
const
NodalIndexSet
&
nodalIndexSet
)
{
return
1
;
}
//! adds the iv index sets living around a vertex to a given container
//! and stores the the corresponding index in a map for each scvf
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment