openfoam/applications/utilities/mesh/advanced/snappyRefineMesh
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
..
Make ENH: relocate triSurface classes into surfMesh library (issue #294) 2017-05-18 10:42:05 +02:00
snappyRefineMesh.C STYLE: use direct iteration for HashSet 2018-03-06 00:29:03 +01:00
snappyRefineMeshDict STYLE: renamed autoRefineMesh->snappyRefineMesh 2016-06-27 19:32:13 +01:00