ENH: surfaceIntersection: Change error to warning

This commit is contained in:
laurence
2013-09-26 14:15:19 +01:00
parent aebfc3c75f
commit 974e509eb4
5 changed files with 18 additions and 2 deletions

View File

@ -968,10 +968,10 @@ Foam::surfaceIntersection::surfaceIntersection
if (!usedPoints.found(pointI))
{
FatalErrorIn("surfaceIntersection::surfaceIntersection")
WarningIn("surfaceIntersection::surfaceIntersection")
<< "Problem: cut point:" << pointI
<< " coord:" << cutPoints_[pointI]
<< " not used by any edge" << abort(FatalError);
<< " not used by any edge" << endl;
}
}
}