openfoam/applications/utilities/mesh
Mark Olesen c2256e51f3 change solvers, utilities, etc. to use while (..) time-looping idiom
- this (now deprecated) idiom:
      for (runTime++; !runTime.end(); runTime++) { ... }
  has a few problems:
    * stop-on-next-write will be off-by-one (ie, doesn't work)
    * function objects are not executed on exit with runTime.end()
  Fixing these problems is not really possible.

- this idiom
      while (runTime.run())
      {
          runTime++;
          ...
      }
  works without the above problems.
2009-02-17 08:47:42 +01:00
..
advanced Merge commit 'OpenCFD/master' into olesenm 2009-02-06 21:19:42 +01:00
conversion Merge commit 'OpenCFD/master' into olesenm 2009-02-06 21:19:42 +01:00
generation Merge commit 'OpenCFD/master' into olesenm 2009-02-06 21:19:42 +01:00
manipulation change solvers, utilities, etc. to use while (..) time-looping idiom 2009-02-17 08:47:42 +01:00