Skip to content
Snippets Groups Projects
  1. Oct 27, 2023
  2. Oct 26, 2023
    • Mark OLESEN's avatar
      ENH: add face/triFace contains(edge) method (#3004) · 29e27181
      Mark OLESEN authored
      STYLE: use contains() and reduce reliance on edgeDirection -1/+1 values
      29e27181
    • Mark OLESEN's avatar
      ENH: additional globalIndex methods and helpers · b34793c3
      Mark OLESEN authored
      - single() method : simply tests if the globalIndex has nProcs == 1,
        which is typically from a gatherNone invocation.
        For example,
      
           globalIndex gi;
           if (...) gi.reset(localSize);
           else     gi.reset(globalIndex::gatherNone{}, localSize);
      
           // later...
           const label begin = (gi.single() ? 0 : gi.localStart());
           const label count = (gi.single() ? gi.totalSize() : gi.localSize());
      
      - add front() and back() methods to return the begin/end ranges,
        and begin_value(), end_value() - as per labelRange.
      
      - make more methods noexcept
      
      - calcOffset(), calcRange() helper functions to determine
        the processor-local of a numbering range without the overhead of
        creating a list of offsets.
      
        For example,
      
           label myOffset = globalIndex::calcOffset(mesh.nCells());
           labelRange mySlice = globalIndex::calcRange(mesh.nCells());
      
      - add globalIndex localEnd() as per CompactListList method
      
      STYLE: align looping constructs in CompactListList with List
      
      - make more methods noexcept
      b34793c3
    • Mark OLESEN's avatar
      ENH: promote ListOps::identity to Foam::identity · d9f05874
      Mark OLESEN authored
      - becoming more frequently used and there is no ambiguity in calling
        parameters either - identity(label) vs identity(labelUList&).
      
        Provide both int32 and int64 versions.
      d9f05874
    • Mark OLESEN's avatar
      ef92d314
    • Mark OLESEN's avatar
      ENH: expose fieldNames() selection for sampledSets/sampledSurfaces · 1faa143a
      Mark OLESEN authored
      - consistent with probes. Allows reporting/querying
      1faa143a
  3. Oct 24, 2023
  4. Oct 23, 2023
  5. Oct 20, 2023