Skip to content
Snippets Groups Projects
Commit 94bc14bc authored by Oliver Sander's avatar Oliver Sander Committed by sander
Browse files

Adapt to changes in the GlobalIndexSet class

[[Imported from SVN: r9931]]
parent a88ace33
No related branches found
No related tags found
No related merge requests found
...@@ -42,7 +42,6 @@ namespace Dune { ...@@ -42,7 +42,6 @@ namespace Dune {
// total number of degrees of freedom // total number of degrees of freedom
nGlobalEntity_ = globalVertexIndex.size(2) + globalEdgeIndex.size(1) + globalElementIndex.size(0); nGlobalEntity_ = globalVertexIndex.size(2) + globalEdgeIndex.size(1) + globalElementIndex.size(0);
nOwnedLocalEntity_ = globalVertexIndex.nOwnedLocalEntity() + globalEdgeIndex.nOwnedLocalEntity() + globalElementIndex.nOwnedLocalEntity();
// Determine // Determine
for (auto it = gridView.template begin<0>(); it != gridView.template end<0>(); ++it) for (auto it = gridView.template begin<0>(); it != gridView.template end<0>(); ++it)
...@@ -118,11 +117,6 @@ namespace Dune { ...@@ -118,11 +117,6 @@ namespace Dune {
return nGlobalEntity_; return nGlobalEntity_;
} }
unsigned int nOwnedLocalEntity() const
{
return nOwnedLocalEntity_;
}
P2BasisMapper<GridView> p2Mapper_; P2BasisMapper<GridView> p2Mapper_;
IndexMap localGlobalMap_; IndexMap localGlobalMap_;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment