Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
iMSTK
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
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
Ben Boeckel
iMSTK
Commits
2503239e
Commit
2503239e
authored
5 years ago
by
Sreekanth Arikatla
Browse files
Options
Downloads
Patches
Plain Diff
Revert "Merge branch 'UnityIntegration' into 'master'"
This reverts merge request !408
parent
2d49db3f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Source/Geometry/Map/imstkOneToOneMap.cpp
+14
-21
14 additions, 21 deletions
Source/Geometry/Map/imstkOneToOneMap.cpp
with
14 additions
and
21 deletions
Source/Geometry/Map/imstkOneToOneMap.cpp
+
14
−
21
View file @
2503239e
...
...
@@ -112,27 +112,20 @@ OneToOneMap::isValid() const
auto
numVertSlave
=
meshSlave
->
getNumVertices
();
bool
bOK
=
true
;
if
(
m_oneToOneMapVector
.
size
()
==
0
)
{
bOK
=
false
;
}
else
{
ParallelUtils
::
parallelFor
(
m_oneToOneMapVector
.
size
(),
[
&
](
const
size_t
idx
)
{
if
(
!
bOK
)
// If map is invalid, no need to check further
{
return
;
}
const
auto
&
mapValue
=
m_oneToOneMapVector
[
idx
];
if
(
mapValue
.
first
>=
numVertSlave
&&
mapValue
.
second
>=
numVertMaster
)
{
LOG
(
WARNING
)
<<
"OneToOneMap map is not valid! Vertex indices out of bounds."
;
bOK
=
false
;
}
});
}
ParallelUtils
::
parallelFor
(
m_oneToOneMapVector
.
size
(),
[
&
](
const
size_t
idx
)
{
if
(
!
bOK
)
// If map is invalid, no need to check further
{
return
;
}
const
auto
&
mapValue
=
m_oneToOneMapVector
[
idx
];
if
(
mapValue
.
first
>=
numVertSlave
&&
mapValue
.
second
>=
numVertMaster
)
{
LOG
(
WARNING
)
<<
"OneToOneMap map is not valid! Vertex indices out of bounds."
;
bOK
=
false
;
}
});
return
bOK
;
}
...
...
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