Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-gfe
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
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
Sander, Oliver
dune-gfe
Commits
fd14219e
Commit
fd14219e
authored
10 years ago
by
Oliver Sander
Committed by
sander
10 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Rename class GlobalUniqueIndex to GlobalIndexSet
[[Imported from SVN: r9918]]
parent
be8e4d95
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dune/gfe/parallel/globalindex.hh
+2
-2
2 additions, 2 deletions
dune/gfe/parallel/globalindex.hh
dune/gfe/parallel/globalp2mapper.hh
+3
-3
3 additions, 3 deletions
dune/gfe/parallel/globalp2mapper.hh
dune/gfe/riemanniantrsolver.cc
+3
-3
3 additions, 3 deletions
dune/gfe/riemanniantrsolver.cc
with
8 additions
and
8 deletions
dune/gfe/parallel/globalindex.hh
+
2
−
2
View file @
fd14219e
...
...
@@ -70,7 +70,7 @@
namespace
Dune
{
template
<
class
GridView
,
int
CODIM
>
class
Global
Unique
Index
class
GlobalIndex
Set
{
private:
/** define data types */
...
...
@@ -191,7 +191,7 @@ public:
/* later query the global index, by directly passing the entity in question: then the respective global */
/* index is returned. */
/**********************************************************************************************************************/
Global
Unique
Index
(
const
GridView
&
gridview
)
GlobalIndex
Set
(
const
GridView
&
gridview
)
:
gridview_
(
gridview
),
uniqueEntityPartition_
(
gridview
)
{
...
...
This diff is collapsed.
Click to expand it.
dune/gfe/parallel/globalp2mapper.hh
+
3
−
3
View file @
fd14219e
...
...
@@ -36,9 +36,9 @@ namespace Dune {
P2BasisMapper
<
GridView
>
p2Mapper
(
gridView
);
Global
Unique
Index
<
GridView
,
2
>
globalVertexIndex
(
gridView
);
Global
Unique
Index
<
GridView
,
1
>
globalEdgeIndex
(
gridView
);
Global
Unique
Index
<
GridView
,
0
>
globalElementIndex
(
gridView
);
GlobalIndex
Set
<
GridView
,
2
>
globalVertexIndex
(
gridView
);
GlobalIndex
Set
<
GridView
,
1
>
globalEdgeIndex
(
gridView
);
GlobalIndex
Set
<
GridView
,
0
>
globalElementIndex
(
gridView
);
// total number of degrees of freedom
nGlobalEntity_
=
globalVertexIndex
.
nGlobalEntity
()
+
globalEdgeIndex
.
nGlobalEntity
()
+
globalElementIndex
.
nGlobalEntity
();
...
...
This diff is collapsed.
Click to expand it.
dune/gfe/riemanniantrsolver.cc
+
3
−
3
View file @
fd14219e
...
...
@@ -181,7 +181,7 @@ setup(const GridType& grid,
// If we are on more than 1 processors, join all local transfer matrices on rank 0,
// and construct a single global transfer operator there.
typedef
Dune
::
Global
Unique
Index
<
typename
GridType
::
LeafGridView
,
gridDim
>
LeafP1GUIndex
;
typedef
Dune
::
GlobalIndex
Set
<
typename
GridType
::
LeafGridView
,
gridDim
>
LeafP1GUIndex
;
LeafP1GUIndex
p1Index
(
grid_
->
leafGridView
());
typedef
typename
TruncatedCompressedMGTransfer
<
CorrectionType
>::
TransferOperatorType
TransferOperatorType
;
...
...
@@ -198,7 +198,7 @@ setup(const GridType& grid,
// If we are on more than 1 processors, join all local transfer matrices on rank 0,
// and construct a single global transfer operator there.
typedef
Dune
::
Global
Unique
Index
<
typename
GridType
::
LevelGridView
,
gridDim
>
LevelGUIndex
;
typedef
Dune
::
GlobalIndex
Set
<
typename
GridType
::
LevelGridView
,
gridDim
>
LevelGUIndex
;
LevelGUIndex
fineGUIndex
(
grid_
->
levelGridView
(
i
+
2
));
LevelGUIndex
coarseGUIndex
(
grid_
->
levelGridView
(
i
+
1
));
...
...
@@ -221,7 +221,7 @@ setup(const GridType& grid,
// If we are on more than 1 processors, join all local transfer matrices on rank 0,
// and construct a single global transfer operator there.
typedef
Dune
::
Global
Unique
Index
<
typename
GridType
::
LevelGridView
,
gridDim
>
LevelGUIndex
;
typedef
Dune
::
GlobalIndex
Set
<
typename
GridType
::
LevelGridView
,
gridDim
>
LevelGUIndex
;
LevelGUIndex
fineGUIndex
(
grid_
->
levelGridView
(
i
+
1
));
LevelGUIndex
coarseGUIndex
(
grid_
->
levelGridView
(
i
));
...
...
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