mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
ENH: improve consistency of ListOps and stringListOps
- subsetList, inplaceSubsetList with optional inverted logic. - use moveable elements where possible. - allow optional starting offset for the identity global function. Eg, 'identity(10, start)' vs 'identity(10) + start'
This commit is contained in:
@ -619,8 +619,11 @@ void Foam::meshRefinement::checkData()
|
||||
localPointRegion::findDuplicateFaces
|
||||
(
|
||||
mesh_,
|
||||
identity(mesh_.nFaces()-mesh_.nInternalFaces())
|
||||
+ mesh_.nInternalFaces()
|
||||
identity
|
||||
(
|
||||
mesh_.nFaces() - mesh_.nInternalFaces(),
|
||||
mesh_.nInternalFaces()
|
||||
)
|
||||
)
|
||||
);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user