Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Chaofan Chen
ogs
Commits
9147b82e
Commit
9147b82e
authored
7 years ago
by
Dmitri Naumov
Browse files
Options
Downloads
Patches
Plain Diff
[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
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
NumLib/DOF/LocalToGlobalIndexMap.cpp
+0
-27
0 additions, 27 deletions
NumLib/DOF/LocalToGlobalIndexMap.cpp
NumLib/DOF/LocalToGlobalIndexMap.h
+0
-11
0 additions, 11 deletions
NumLib/DOF/LocalToGlobalIndexMap.h
with
0 additions
and
38 deletions
NumLib/DOF/LocalToGlobalIndexMap.cpp
+
0
−
27
View file @
9147b82e
...
@@ -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
,
...
...
This diff is collapsed.
Click to expand it.
NumLib/DOF/LocalToGlobalIndexMap.h
+
0
−
11
View file @
9147b82e
...
@@ -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.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment