Skip to content
Snippets Groups Projects
Commit 2503239e authored by Sreekanth Arikatla's avatar Sreekanth Arikatla
Browse files

Revert "Merge branch 'UnityIntegration' into 'master'"

This reverts merge request !408
parent 2d49db3f
No related branches found
No related tags found
No related merge requests found
......@@ -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;
}
......
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