Skip to content
Snippets Groups Projects
  1. Sep 29, 2019
  2. Sep 25, 2019
    • Mark OLESEN's avatar
      ENH: adjust HashTable iterator access · bc9295ee
      Mark OLESEN authored
      - previously allowed mapped value modification with a const iterator.
        However, this can lead to incorrect access patterns.
      
        Now tie the constness of the mapped value to that of the iterator.
      
      - Remove deprecated iterator object() method.
        Was only used internally and was superseded by the val() method
        in an earlier version.
      
      ENH: change isPointer to isPointerLike
      
      - can distinguish between real pointers and wrapped pointers
      bc9295ee
  3. Sep 29, 2019
  4. Sep 27, 2019
  5. Sep 25, 2019
  6. Sep 27, 2019
  7. Sep 26, 2019
  8. Sep 25, 2019
  9. Sep 24, 2019
  10. Sep 20, 2019
  11. Sep 23, 2019
  12. Sep 19, 2019
  13. Sep 12, 2019
  14. Sep 16, 2019
  15. Sep 13, 2019
  16. Sep 12, 2019
  17. Sep 05, 2019
  18. Sep 04, 2019
  19. Sep 03, 2019
  20. Sep 02, 2019
  21. Aug 31, 2019
  22. Aug 30, 2019
    • Mark OLESEN's avatar
      ENH: allow invariant surfaces for sampling (#1418) · 8037b8d6
      Mark OLESEN authored
      - an advanced feature, for example when sampling on a static patch
        while some motion occurs elsewhere. [use with caution]
      
      - If the sampled surface dictionary is modified during run-time, the
        ensight file indexing for the geometry will become out of sync.
        This is addressed in a subsequent commit.
      8037b8d6
    • OpenFOAM bot's avatar
      TUT: use simpler syntax for libs entries · 880d8147
      OpenFOAM bot authored
      880d8147
    • Mark OLESEN's avatar
      ENH: support additional command-line loading of libraries (#1414) · 6eaa326c
      Mark OLESEN authored
      - this can be useful for preloading of libraries, or for utilities
        that don't use system/controlDict.
      
        The additional libraries can be specified individually:
      
            myUtil -lib lib1 -lib lib2 -lib lib3
      
        When specified like this, the options add up.
      
        Or as a 'captured' list using OpenFOAM's standard arg list handling:
      
            myUtil -lib '(' lib1  lib2 lib3 ')'
            myUtil -lib \( lib1  lib2 lib3 \)
      
        or as single argument list:
      
            myUtil -lib '("lib1" "lib2" "lib3")'
      
        When specified as a single argument, would normally take advantage
        of the transparent handling of word vs fileName and omit the string
        quotes:
      
            myUtil -lib '(lib1 lib2 lib3)'
      
      ENH: dlOpen error messages now propagated into dlLibraryTable
      
      - this makes the context more relevant and also avoids the previous
        annoyance of double warnings (one from the POSIX loader, and one
        from dlLibraryTable)
      
      STYLE: mark -noFunctionObjects and -withFunctionObjects as 'advanced'
      
      - reduces clutter. Still visible with -help-full
      6eaa326c