openfoam/applications/utilities/parallelProcessing
Mark Olesen 078e34746e ENH: code adjustments for updated NullObject
- can now safely use labelList::null() instead of emptyLabelList for
  return values. No special treatment required for lists.

  Possible replacements:

      if (notNull(list) && list.size())  ->  if (list.size())
      if (isNull(list) || list.empty())  ->  if (list.empty())

  The receiver may still wish to handle differently to distinguish
  between a null list and an empty list, but no additional special
  protection is required when obtaining sizes, traversing, outputting
  etc.
2019-02-07 13:04:24 +01:00
..
decomposePar BOT: Cleaned up header files 2019-02-06 12:28:23 +00:00
reconstructPar BOT: Cleaned up header files 2019-02-06 12:28:23 +00:00
reconstructParMesh BOT: Cleaned up header files 2019-02-06 12:28:23 +00:00
redistributePar ENH: code adjustments for updated NullObject 2019-02-07 13:04:24 +01:00