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
33131b6d
Commit
33131b6d
authored
7 years ago
by
Sina Ackermann
Browse files
Options
Downloads
Patches
Plain Diff
Fix error in 'corner(localIdx)' in cc/subcontrolvolume
parent
8de735be
No related branches found
Branches containing commit
No related tags found
Tags containing commit
2 merge requests
!617
[WIP] Next
,
!536
Fix error in 'corner(localIdx)' in cc/subcontrolvolume
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/discretization/cellcentered/subcontrolvolume.hh
+2
-2
2 additions, 2 deletions
dumux/discretization/cellcentered/subcontrolvolume.hh
with
2 additions
and
2 deletions
dumux/discretization/cellcentered/subcontrolvolume.hh
+
2
−
2
View file @
33131b6d
...
@@ -126,8 +126,8 @@ public:
...
@@ -126,8 +126,8 @@ public:
//! Return the corner for the given local index
//! Return the corner for the given local index
GlobalPosition
corner
(
unsigned
int
localIdx
)
const
GlobalPosition
corner
(
unsigned
int
localIdx
)
const
{
{
assert
(
localIdx
<
geometry
().
corners
()
.
size
()
&&
"provided index exceeds the number of corners"
);
assert
(
localIdx
<
geometry
().
corners
()
&&
"provided index exceeds the number of corners"
);
return
geometry
().
corner
s
(
localIdx
);
return
geometry
().
corner
(
localIdx
);
}
}
private
:
private
:
...
...
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