- Feb 14, 2019
- Jan 07, 2019
-
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
- Feb 13, 2019
-
-
Mark OLESEN authored
-
- Feb 12, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- delay dereferencing of optional subRegion entries until an objectRegistry is required. This improves usabilty when reference objects do not yet exist at the time of construction.
-
Mark OLESEN authored
- complete any pending initialisation on write(). Allows lazier evaluation until when surfaces are actually available.
-
Mark OLESEN authored
- complete any pending initialisation on write(). Allows lazier evaluation until when the surfaces are actually needed.
-
Mark OLESEN authored
-
- Feb 03, 2019
-
-
Mark OLESEN authored
- includes initial relocation of low-level vtu handling. Extracted, refactored from the Catalyst function object.
-
- Feb 12, 2019
-
-
Mark OLESEN authored
-
- Jan 07, 2019
-
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
Mark OLESEN authored
- reduced clutter when iterating over containers
-
- Feb 11, 2019
-
-
Mark OLESEN authored
- previously it was only possible to reset a pointer, but not to change a const-reference directly (needed a swap() to do this).
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- Feb 08, 2019
-
-
Mark OLESEN authored
- currently supports pTotal, rhoU.
-
Mark OLESEN authored
- makes it easier to implement functionObject or field object removal
-
- Feb 11, 2019
-
-
Mark OLESEN authored
- use registry checkOut for removeRegisteredObject function object
-
Mark OLESEN authored
-
Mark OLESEN authored
-
mattijs authored
-
mattijs authored
-
mattijs authored
-
- Feb 08, 2019
-
-
Henry Weller authored
The occurrence is from cells with vertices that are shared between two faces only (these vertices can originate from hex refinement). Decomposing both faces can occasionally produce triangles with identical vertices and this results in a non-manifold edge which triggers the erosion procedure. Avoided by detecting cells with these special vertices and making sure the tet-decomposition never uses the same points on the faces using them. Patch contributed by Mattijs Janssens
-
- Feb 11, 2019
-
-
Andrew Heather authored
-
Andrew Heather authored
-
- Feb 08, 2019
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
- move declaration of emptyLabelList (now deprecated) out of List.H
-
Andrew Heather authored
-
Andrew Heather authored
-
- Feb 07, 2019
-
-
mattijs authored
-
mattijs authored
-
Mark OLESEN authored
- 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.
-