From 5cc7b4555c5ae9aad9c63b7b890fc198a1743bae Mon Sep 17 00:00:00 2001 From: Dmitri Naumov <github@naumov.de> Date: Sat, 13 Mar 2021 17:58:07 +0100 Subject: [PATCH] [PL/DS] Remove unnecessary parts after last commit --- ProcessLib/DeactivatedSubdomain.cpp | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/ProcessLib/DeactivatedSubdomain.cpp b/ProcessLib/DeactivatedSubdomain.cpp index 6fdfa2226bd..67830ae2b63 100644 --- a/ProcessLib/DeactivatedSubdomain.cpp +++ b/ProcessLib/DeactivatedSubdomain.cpp @@ -83,23 +83,6 @@ static std::vector<MeshLib::Node*> extractInnerNodes( return inner_nodes; } -template <typename InputIterator, typename UnaryPredicate> -std::vector<std::size_t> copyIdsIf(InputIterator first, - InputIterator last, - UnaryPredicate p) -{ - std::vector<std::size_t> ids; - while (first != last) - { - if (p(*first)) - { - ids.push_back((*first)->getID()); - } - ++first; - } - return ids; -} - static std::unique_ptr<DeactivetedSubdomainMesh> createDeactivatedSubdomainMesh( MeshLib::Mesh const& mesh, int const material_id) { @@ -109,16 +92,6 @@ static std::unique_ptr<DeactivetedSubdomainMesh> createDeactivatedSubdomainMesh( return material_id == material_ids[e->getID()]; }; - auto deactivated_bulk_node_ids = copyIdsIf( - begin(mesh.getNodes()), end(mesh.getNodes()), - [&](MeshLib::Node* const n) { - const auto& connected_elements = n->getElements(); - - // Check whether this node is in an activated element. - return std::all_of(begin(connected_elements), - end(connected_elements), is_active); - }); - auto const& elements = mesh.getElements(); std::vector<MeshLib::Element*> deactivated_elements; std::copy_if(begin(elements), end(elements), -- GitLab