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

[NL] Remove no longer used private ctor.

Previously used by single-component deriveBoundaryConstrainedMap.
parent cd2cc8d8
No related branches found
No related tags found
No related merge requests found
...@@ -194,33 +194,6 @@ LocalToGlobalIndexMap::LocalToGlobalIndexMap( ...@@ -194,33 +194,6 @@ LocalToGlobalIndexMap::LocalToGlobalIndexMap(
} }
} }
LocalToGlobalIndexMap::LocalToGlobalIndexMap(
std::vector<std::unique_ptr<MeshLib::MeshSubsets>>&& mesh_subsets,
int const component_id,
std::vector<MeshLib::Element*> const& elements,
NumLib::MeshComponentMap&& mesh_component_map)
: _mesh_subsets(std::move(mesh_subsets)),
_mesh_component_map(std::move(mesh_component_map)),
_variable_component_offsets(to_cumulative(std::vector<unsigned>(1,1))) // Single variable only.
{
// There is only one mesh_subsets in the vector _mesh_subsets.
assert(_mesh_subsets.size() == 1);
auto const mss = *_mesh_subsets.front();
// For all MeshSubset in mesh_subsets and each element of that MeshSubset
// save a line of global indices.
for (MeshLib::MeshSubset const* const ms : mss)
{
std::size_t const mesh_id = ms->getMeshID();
findGlobalIndices(elements.cbegin(), elements.cend(), ms->getNodes(), mesh_id,
component_id, 0); // There is only one component to
// write out, therefore the zero
// parameter.
}
}
LocalToGlobalIndexMap::LocalToGlobalIndexMap( LocalToGlobalIndexMap::LocalToGlobalIndexMap(
std::vector<std::unique_ptr<MeshLib::MeshSubsets>>&& mesh_subsets, std::vector<std::unique_ptr<MeshLib::MeshSubsets>>&& mesh_subsets,
std::vector<std::size_t> const& global_component_ids, std::vector<std::size_t> const& global_component_ids,
......
...@@ -163,17 +163,6 @@ public: ...@@ -163,17 +163,6 @@ public:
} }
private: private:
/// Private constructor used by internally created local-to-global index
/// maps. The mesh_component_map is passed as argument instead of being
/// created by the constructor.
/// \attention The passed mesh_component_map is in undefined state after
/// this construtor.
explicit LocalToGlobalIndexMap(
std::vector<std::unique_ptr<MeshLib::MeshSubsets>>&& mesh_subsets,
int const component_id,
std::vector<MeshLib::Element*> const& elements,
NumLib::MeshComponentMap&& mesh_component_map);
/// Private constructor used by internally created local-to-global index /// Private constructor used by internally created local-to-global index
/// maps. The mesh_component_map is passed as argument instead of being /// maps. The mesh_component_map is passed as argument instead of being
/// created by the constructor. /// created by the constructor.
......
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