Skip to content
Snippets Groups Projects
Commit 47f47745 authored by Dmitri Naumov's avatar Dmitri Naumov Committed by Tom Fischer
Browse files

[MeL] Use ranges for_each algorithm

parent d72a8c34
No related branches found
No related tags found
No related merge requests found
...@@ -11,6 +11,8 @@ ...@@ -11,6 +11,8 @@
#include "SetMeshSpaceDimension.h" #include "SetMeshSpaceDimension.h"
#include <range/v3/algorithm/for_each.hpp>
#include "GetSpaceDimension.h" #include "GetSpaceDimension.h"
#include "MeshLib/Elements/Element.h" #include "MeshLib/Elements/Element.h"
#include "MeshLib/Mesh.h" #include "MeshLib/Mesh.h"
...@@ -20,14 +22,11 @@ namespace MeshLib ...@@ -20,14 +22,11 @@ namespace MeshLib
void setMeshSpaceDimension(std::vector<std::unique_ptr<Mesh>> const& meshes) void setMeshSpaceDimension(std::vector<std::unique_ptr<Mesh>> const& meshes)
{ {
// Get the space dimension from the bulk mesh: // Get the space dimension from the bulk mesh:
auto const space_dimension = getSpaceDimension(meshes[0]->getNodes()); auto const d = getSpaceDimension(meshes[0]->getNodes());
for (auto const& mesh : meshes) for (auto const& mesh : meshes)
{ {
auto elements = mesh->getElements(); ranges::for_each(mesh->getElements(),
for (auto element : elements) [d](Element* const e) { e->space_dimension_ = d; });
{
element->space_dimension_ = space_dimension;
}
} }
} }
}; // namespace MeshLib }; // namespace MeshLib
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