Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-foamgrid
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
extensions
dune-foamgrid
Merge requests
!86
[entity] Make entity a non-static interface function as in the dune grid interface
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[entity] Make entity a non-static interface function as in the dune grid interface
feature/entity-interface
into
master
Overview
3
Commits
1
Pipelines
1
Changes
1
1 unresolved thread
Hide all comments
Merged
Timo Koch
requested to merge
feature/entity-interface
into
master
3 years ago
Overview
3
Commits
1
Pipelines
1
Changes
1
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
17c2787e
1 commit,
3 years ago
1 file
+
3
−
4
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
dune/foamgrid/foamgrid.hh
+
3
−
4
Options
@@ -308,12 +308,11 @@ public:
/** \brief Create an Entity from an EntitySeed */
template
<
class
EntitySeed
>
static
typename
Traits
::
template
Codim
<
EntitySeed
::
codimension
>
::
Entity
entity
(
const
EntitySeed
&
seed
)
typename
Traits
::
template
Codim
<
EntitySeed
::
codimension
>
::
Entity
entity
(
const
EntitySeed
&
seed
)
const
{
const
int
codim
=
EntitySeed
::
codimension
;
typedef
typename
Traits
::
template
Codim
<
codim
>
::
Entity
Entity
;
return
Entity
(
FoamGridEntity
<
codim
,
dimgrid
,
const
FoamGrid
>
(
seed
.
impl
().
target
()));
return
FoamGridEntity
<
codim
,
dimgrid
,
const
FoamGrid
>
(
seed
.
impl
().
target
());
}
Loading