openfoam/applications/utilities/mesh/advanced
Mark Olesen 4fe8ed8245 STYLE: use direct iteration for HashSet
- The iterator for a HashSet dereferences directly to its key.

- Eg,

      for (const label patchi : patchSet)
      {
          ...
      }
  vs.
      forAllConstIter(labelHashSet, patchSet, iter)
      {
          const label patchi = iter.key();
          ...
      }
2018-03-06 00:29:03 +01:00
..
collapseEdges ENH: make format of ExecutionTime = ... output configurable (issue #788) 2018-04-27 15:00:34 +02:00
combinePatchFaces STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
modifyMesh ENH: code reduction in PackedList, PackedBoolList (issue #751) 2018-03-13 08:32:40 +01:00
PDRMesh STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
refineHexMesh ENH: cleanup autoPtr class (issue #639) 2018-02-26 12:00:00 +01:00
refinementLevel STYLE: more consistent use of dimensioned Zero 2018-03-16 10:24:03 +01:00
refineWallLayer ENH: consistency of HashSet setMany(), insertMany() with packed-list version 2018-03-14 21:08:29 +01:00
removeFaces ENH: cleanup autoPtr class (issue #639) 2018-02-26 12:00:00 +01:00
selectCells ENH: cleanup autoPtr class (issue #639) 2018-02-26 12:00:00 +01:00
snappyRefineMesh STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
splitCells ENH: consistency of HashSet setMany(), insertMany() with packed-list version 2018-03-14 21:08:29 +01:00