Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-curvedgrid
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
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
iwr
dune-curvedgrid
Commits
a65fa0fe
Commit
a65fa0fe
authored
2 years ago
by
Praetorius, Simon
Browse files
Options
Downloads
Patches
Plain Diff
Renaming of CollectiveCommunication into Communication
parent
1f8c2842
No related branches found
No related tags found
1 merge request
!25
Renaming of CollectiveCommunication into Communication
Pipeline
#9402
failed
2 years ago
Stage: test
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dune/curvedgrid/gridfamily.hh
+10
-1
10 additions, 1 deletion
dune/curvedgrid/gridfamily.hh
dune/curvedgrid/gridview.hh
+10
-1
10 additions, 1 deletion
dune/curvedgrid/gridview.hh
with
20 additions
and
2 deletions
dune/curvedgrid/gridfamily.hh
+
10
−
1
View file @
a65fa0fe
...
@@ -4,6 +4,7 @@
...
@@ -4,6 +4,7 @@
#include
<type_traits>
#include
<type_traits>
#include
<dune/common/referencehelper.hh>
#include
<dune/common/referencehelper.hh>
#include
<dune/common/std/type_traits.hh>
#include
<dune/curvedgrid/capabilities.hh>
#include
<dune/curvedgrid/capabilities.hh>
#include
<dune/curvedgrid/entity.hh>
#include
<dune/curvedgrid/entity.hh>
#include
<dune/curvedgrid/entityseed.hh>
#include
<dune/curvedgrid/entityseed.hh>
...
@@ -118,7 +119,15 @@ struct GridFamily
...
@@ -118,7 +119,15 @@ struct GridFamily
using
GlobalIdSet
=
Curved
::
IdSet
<
const
Grid
,
typename
HostGrid
::
Traits
::
GlobalIdSet
>
;
using
GlobalIdSet
=
Curved
::
IdSet
<
const
Grid
,
typename
HostGrid
::
Traits
::
GlobalIdSet
>
;
using
LocalIdSet
=
Curved
::
IdSet
<
const
Grid
,
typename
HostGrid
::
Traits
::
LocalIdSet
>
;
using
LocalIdSet
=
Curved
::
IdSet
<
const
Grid
,
typename
HostGrid
::
Traits
::
LocalIdSet
>
;
using
CollectiveCommunication
=
typename
HostGrid
::
Traits
::
CollectiveCommunication
;
template
<
class
T
>
using
CollectiveCommunication_t
=
typename
T
::
CollectiveCommunication
;
template
<
class
T
>
using
Communication_t
=
typename
T
::
Communication
;
using
CollectiveCommunication
=
Dune
::
Std
::
detected_t
<
CollectiveCommunication_t
,
typename
HostGrid
::
Traits
>
;
using
Communication
=
Dune
::
Std
::
detected_or_t
<
CollectiveCommunication
,
Communication_t
,
typename
HostGrid
::
Traits
>
;
// grid views
// grid views
using
LeafGridView
using
LeafGridView
...
...
This diff is collapsed.
Click to expand it.
dune/curvedgrid/gridview.hh
+
10
−
1
View file @
a65fa0fe
...
@@ -5,6 +5,7 @@
...
@@ -5,6 +5,7 @@
#include
<utility>
#include
<utility>
#include
<dune/common/referencehelper.hh>
#include
<dune/common/referencehelper.hh>
#include
<dune/common/std/type_traits.hh>
#include
<dune/curvedgrid/datahandle.hh>
#include
<dune/curvedgrid/datahandle.hh>
#include
<dune/curvedgrid/declaration.hh>
#include
<dune/curvedgrid/declaration.hh>
#include
<dune/curvedgrid/indexsets.hh>
#include
<dune/curvedgrid/indexsets.hh>
...
@@ -50,7 +51,15 @@ public:
...
@@ -50,7 +51,15 @@ public:
Curved
::
IntersectionIterator
<
const
Grid
,
HostIntersectionIterator
>
,
Curved
::
IntersectionIterator
<
const
Grid
,
HostIntersectionIterator
>
,
Curved
::
Intersection
<
const
Grid
,
HostIntersection
>>
;
Curved
::
Intersection
<
const
Grid
,
HostIntersection
>>
;
using
CollectiveCommunication
=
typename
HostGridView
::
CollectiveCommunication
;
template
<
class
T
>
using
CollectiveCommunication_t
=
typename
T
::
CollectiveCommunication
;
template
<
class
T
>
using
Communication_t
=
typename
T
::
Communication
;
using
CollectiveCommunication
=
Dune
::
Std
::
detected_t
<
CollectiveCommunication_t
,
HostGridView
>
;
using
Communication
=
Dune
::
Std
::
detected_or_t
<
CollectiveCommunication
,
Communication_t
,
HostGridView
>
;
template
<
int
codim
>
template
<
int
codim
>
struct
Codim
struct
Codim
...
...
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