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

[Mesh] Add NodePartitionedMesh::getGlobalNodeID().

parent 87c4e7cb
No related branches found
No related tags found
No related merge requests found
......@@ -80,6 +80,12 @@ class NodePartitionedMesh : public Mesh
return _n_global_nodes;
}
/// Get the global node ID of a node with its local ID.
std::size_t getGlobalNodeID(const std::size_t node_id) const
{
return _global_node_ids[node_id];
}
/// Get the number of the active nodes of the partition for linear elements.
std::size_t getNActiveBaseNodes() const
{
......
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