From 94bc14bcae6793a8301d8ff1fde5f53ec5ece00d Mon Sep 17 00:00:00 2001 From: Oliver Sander <sander@igpm.rwth-aachen.de> Date: Sat, 25 Oct 2014 12:03:00 +0000 Subject: [PATCH] Adapt to changes in the GlobalIndexSet class [[Imported from SVN: r9931]] --- dune/gfe/parallel/globalp2mapper.hh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/dune/gfe/parallel/globalp2mapper.hh b/dune/gfe/parallel/globalp2mapper.hh index 65aa0c99..09a35b91 100644 --- a/dune/gfe/parallel/globalp2mapper.hh +++ b/dune/gfe/parallel/globalp2mapper.hh @@ -42,7 +42,6 @@ namespace Dune { // total number of degrees of freedom nGlobalEntity_ = globalVertexIndex.size(2) + globalEdgeIndex.size(1) + globalElementIndex.size(0); - nOwnedLocalEntity_ = globalVertexIndex.nOwnedLocalEntity() + globalEdgeIndex.nOwnedLocalEntity() + globalElementIndex.nOwnedLocalEntity(); // Determine for (auto it = gridView.template begin<0>(); it != gridView.template end<0>(); ++it) @@ -118,11 +117,6 @@ namespace Dune { return nGlobalEntity_; } - unsigned int nOwnedLocalEntity() const - { - return nOwnedLocalEntity_; - } - P2BasisMapper<GridView> p2Mapper_; IndexMap localGlobalMap_; -- GitLab