openfoam/applications/utilities/parallelProcessing
Mark Olesen 5dc5ea928a ENH: add UPstream::subProcs() static method
- returns a range of `int` values that can be iterated across.
  For example,

      for (const int proci : Pstream::subProcs()) { ... }

  instead of

      for
      (
          int proci = Pstream::firstSlave();
          proci <= Pstream::lastSlave();
          ++proci
      )
      {
          ...
      }
2020-09-28 14:26:07 +02:00
..
decomposePar STYLE: check autoPtr as plain bool instead of valid() 2020-07-16 11:39:24 +02:00
reconstructPar Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
reconstructParMesh ENH: support predicate checks for argList (similar to dictionary methods) 2020-06-02 13:51:18 +02:00
redistributePar ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00