Bugfix in shared point detection (not all problems resolved, yet)

This commit is contained in:
Henrik Rusche 2018-07-13 11:47:18 +02:00
parent 05e7057e4d
commit ef1c4242c1

View file

@ -318,7 +318,7 @@ void Foam::sharedPoints::calcSharedPoints()
forAll (curMarkedPoints, pointI)
{
if (curMarkedPoints[pointI] > 2)
if (curMarkedPoints[pointI] > 1)
{
nShared++;
}
@ -332,7 +332,7 @@ void Foam::sharedPoints::calcSharedPoints()
forAll (curMarkedPoints, pointI)
{
if (curMarkedPoints[pointI] > 2)
if (curMarkedPoints[pointI] > 1)
{
curShared[nShared] = pointI;
nShared++;