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
4611b301
Commit
4611b301
authored
8 years ago
by
Timo Koch
Browse files
Options
Downloads
Patches
Plain Diff
[embedded][glue] Add method returning size of glue object
parent
a2998c4c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dumux/mixeddimension/glue/glue.hh
+6
-6
6 additions, 6 deletions
dumux/mixeddimension/glue/glue.hh
with
6 additions
and
6 deletions
dumux/mixeddimension/glue/glue.hh
+
6
−
6
View file @
4611b301
...
...
@@ -238,15 +238,11 @@ public:
//! Return a reference to the bulk problem
BulkProblem
&
bulkProblem
()
{
return
bulkProblem_
;
}
{
return
bulkProblem_
;
}
//! Return a reference to the low dimensional problem
LowDimProblem
&
lowDimProblem
()
{
return
lowDimProblem_
;
}
{
return
lowDimProblem_
;
}
//! Return begin iterator to intersection container
typename
Intersections
::
const_iterator
ibegin
()
const
...
...
@@ -256,6 +252,10 @@ public:
typename
Intersections
::
const_iterator
iend
()
const
{
return
intersections_
.
end
();
}
//! the number of intersections
std
::
size_t
size
()
const
{
return
intersections_
.
size
();
}
private
:
BulkProblem
&
bulkProblem_
;
LowDimProblem
&
lowDimProblem_
;
...
...
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