mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
BUG: primitiveMesh: cellPoints, cellEdges inconsistent API. Fixes #703.
This commit is contained in:
@ -718,10 +718,11 @@ Foam::labelList Foam::meshRefinement::markFacesOnProblemCells
|
||||
// On-the-fly addressing storage.
|
||||
DynamicList<label> dynFEdges;
|
||||
DynamicList<label> dynCPoints;
|
||||
labelHashSet pSet;
|
||||
|
||||
forAll(cellLevel, celli)
|
||||
{
|
||||
const labelList& cPoints = mesh_.cellPoints(celli, dynCPoints);
|
||||
const labelList& cPoints = mesh_.cellPoints(celli, pSet, dynCPoints);
|
||||
|
||||
// Get number of anchor points (pointLevel <= cellLevel)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user