Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-xt
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
ag-ohlberger
dune-community
dune-xt
Commits
e6fd9495
Commit
e6fd9495
authored
6 years ago
by
Tobias Leibner
Browse files
Options
Downloads
Patches
Plain Diff
[walker.apply-on] add singletons for AllEntities and AllIntersections
parent
c6ce8801
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dune/xt/grid/walker/apply-on.hh
+15
-1
15 additions, 1 deletion
dune/xt/grid/walker/apply-on.hh
with
15 additions
and
1 deletion
dune/xt/grid/walker/apply-on.hh
+
15
−
1
View file @
e6fd9495
...
...
@@ -80,6 +80,13 @@ public:
}
};
// class AllEntities
template
<
class
GridLayerImp
>
const
AllEntities
<
GridLayerImp
>*
all_entities
()
{
static
const
AllEntities
<
GridLayerImp
>
all_entities_singleton
;
return
&
all_entities_singleton
;
}
/**
* \brief Selects entities which have a boundary intersection.
...
...
@@ -294,9 +301,16 @@ public:
}
};
// class AllIntersections
template
<
class
GridLayerImp
>
const
AllIntersections
<
GridLayerImp
>*
all_intersections
()
{
static
const
AllIntersections
<
GridLayerImp
>
all_intersections_singleton
;
return
&
all_intersections_singleton
;
}
/**
* \brief Selects
all
intersections.
* \brief Selects
no
intersections.
*/
template
<
class
GridLayerImp
>
class
NoIntersections
:
public
internal
::
WhichIntersectionBase
<
GridLayerImp
,
NoIntersections
<
GridLayerImp
>>
...
...
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