From ea24cc2e1457d6a03d6194ce6f8b1a24f46f2250 Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <dmitri.naumov@ufz.de> Date: Wed, 27 Nov 2019 15:32:58 +0100 Subject: [PATCH] [MeL] Remove unused resetElementsConnectedToNodes. --- MeshLib/Mesh.cpp | 12 ------------ MeshLib/Mesh.h | 7 ------- 2 files changed, 19 deletions(-) diff --git a/MeshLib/Mesh.cpp b/MeshLib/Mesh.cpp index 8e121764ddb..19a54a8b08b 100644 --- a/MeshLib/Mesh.cpp +++ b/MeshLib/Mesh.cpp @@ -184,18 +184,6 @@ void Mesh::setElementsConnectedToNodes() } } -void Mesh::resetElementsConnectedToNodes() -{ - for (auto& node : _nodes) - { - if (node) - { - node->clearElements(); - } - } - this->setElementsConnectedToNodes(); -} - void Mesh::calcEdgeLengthRange() { this->_edge_length.first = std::numeric_limits<double>::max(); diff --git a/MeshLib/Mesh.h b/MeshLib/Mesh.h index 5ab863bd343..8ceaa95cf62 100644 --- a/MeshLib/Mesh.h +++ b/MeshLib/Mesh.h @@ -140,13 +140,6 @@ protected: /// Set the minimum and maximum length over the edges of the mesh. void calcEdgeLengthRange(); - /** - * Resets the connected elements for the node vector, i.e. removes the old information and - * calls setElementsConnectedToNodes to set the new information. - * \attention This needs to be called if node neighbourhoods are reset. - */ - void resetElementsConnectedToNodes(); - /// Sets the dimension of the mesh. void setDimension(); -- GitLab