mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of ssh://noisy/home/noisy3/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -1112,6 +1112,13 @@ bool Foam::cyclicPolyPatch::order
|
||||
return false;
|
||||
}
|
||||
|
||||
if (pp.size()&1)
|
||||
{
|
||||
FatalErrorIn("cyclicPolyPatch::order(..)")
|
||||
<< "Size of cyclic " << name() << " should be a multiple of 2"
|
||||
<< ". It is " << pp.size() << abort(FatalError);
|
||||
}
|
||||
|
||||
label halfSize = pp.size()/2;
|
||||
|
||||
// Supplied primitivePatch already with new points.
|
||||
|
||||
@ -191,7 +191,10 @@ void Foam::polyTopoChange::countMap
|
||||
}
|
||||
|
||||
|
||||
Foam::labelHashSet Foam::polyTopoChange::getSetIndices(const PackedBoolList& lst)
|
||||
Foam::labelHashSet Foam::polyTopoChange::getSetIndices
|
||||
(
|
||||
const PackedBoolList& lst
|
||||
)
|
||||
{
|
||||
labelHashSet values(lst.count());
|
||||
forAll(lst, i)
|
||||
|
||||
Reference in New Issue
Block a user