mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: face: Early exit test on circulate removed.
Does not work for faces of size 1 that match
This commit is contained in:
@ -337,11 +337,11 @@ int Foam::face::compare(const face& a, const face& b)
|
||||
} while (bCirc.circulate(CirculatorBase::CLOCKWISE));
|
||||
|
||||
// If the circulator has stopped then faces a and b do not share a matching
|
||||
// point
|
||||
if (!bCirc.circulate())
|
||||
{
|
||||
return 0;
|
||||
}
|
||||
// point. Doesn't work on matching, single element face.
|
||||
//if (!bCirc.circulate())
|
||||
//{
|
||||
// return 0;
|
||||
//}
|
||||
|
||||
// Look forwards around the faces for a match
|
||||
do
|
||||
|
||||
Reference in New Issue
Block a user