Skip to content
Snippets Groups Projects
Commit e6bbe718 authored by Dmitri Naumov's avatar Dmitri Naumov
Browse files

[App/U] Use partition_copy from std ns explicitly.

parent 23c23f2e
No related branches found
No related tags found
No related merge requests found
......@@ -166,13 +166,13 @@ findRegularNodesInPartition(
// order mesh, and realloc needed for higher order element meshes.
// Split the nodes into base nodes and extra nodes.
partition_copy(begin(partition_nodes), end(partition_nodes),
std::back_inserter(base_nodes),
std::back_inserter(higher_order_nodes),
[&](MeshLib::Node* const n) {
return !is_mixed_high_order_linear_elems ||
node_id(*n) > n_base_nodes;
});
std::partition_copy(begin(partition_nodes), end(partition_nodes),
std::back_inserter(base_nodes),
std::back_inserter(higher_order_nodes),
[&](MeshLib::Node* const n) {
return !is_mixed_high_order_linear_elems ||
node_id(*n) > n_base_nodes;
});
return {base_nodes, higher_order_nodes};
}
......
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