openfoam/applications/utilities/parallelProcessing
Mark Olesen 5022591c36 ENH: return old file handler on change
- intended for the following type of use:

      auto oldHandler = fileHandler(fileOperation::NewUncollated());

      ... do something that only works with uncollated

      // Restore previous (if any)
      if (oldHandler)
      {
          fileHandler(std::move(oldHandler));
      }

ENH: make fileOperation distributed(bool) mutable

- use is "static-like" and akin to Pstream::parRun(bool),
  thus allow toggling of the switch without a const_cast
2021-05-13 11:39:30 +02:00
..
decomposePar ENH: centralized handling of -allRegions, -regions, -region (#2072) 2021-05-07 09:46:33 +02:00
reconstructPar ENH: centralized handling of -allRegions, -regions, -region (#2072) 2021-05-07 09:46:33 +02:00
reconstructParMesh BUG: redistributePar: single-step. See #1211 2021-03-15 08:31:10 +00:00
redistributePar ENH: return old file handler on change 2021-05-13 11:39:30 +02:00