openfoam/applications/test
Mark Olesen 95cd8ee75c ENH: improve hashing overloads of string-types and HashTable/HashSet
- additional dummy template parameter to assist with supporting
  derived classes. Currently just used for string types, but can be
  extended.

- provide hash specialization for various integer types.
  Removes the need for any forwarding.

- change default hasher for HashSet/HashTable from 'string::hash'
  to `Hash<Key>`. This avoids questionable hashing calls and/or
  avoids compiler resolution problems.

  For example,
  HashSet<label>::hasher and labelHashSet::hasher now both properly
  map to Hash<label> whereas previously HashSet<label> would have
  persistently mapped to string::hash, which was incorrect.

- standardize internal hashing functors.

  Functor name is 'hasher', as per STL set/map and the OpenFOAM
  HashSet/HashTable definitions.

  Older code had a local templated name, which added unnecessary
  clutter and the template parameter was always defaulted.
  For example,

      Old:  `FixedList<label, 3>::Hash<>()`
      New:  `FixedList<label, 3>::hasher()`
      Unchanged:  `labelHashSet::hasher()`

  Existing `Hash<>` functor namings are still supported,
  but deprecated.

- define hasher and Hash specialization for bitSet and PackedList

- add symmetric hasher for 'face'.
  Starts with lowest vertex value and walks in the direction
  of the next lowest value. This ensures that the hash code is
  independent of face orientation and face rotation.

NB:
  - some of keys for multiphase handling (eg, phasePairKey)
    still use yet another function naming: `hash` and `symmHash`.
    This will be targeted for alignment in the future.
2021-04-19 16:33:42 +00:00
..
00-dummy CONFIG: rationalize mpi config tuning (#1910) 2020-11-11 18:36:01 +01:00
alloc STYLE: use std:: qualifier on ::abort, ::exit 2019-04-03 20:24:30 +02:00
argList ENH: support predicate checks for argList (similar to dictionary methods) 2020-06-02 13:51:18 +02:00
autoPtr STYLE: can add compile-time deprecated message for autoPtr::set() 2020-11-19 16:57:45 +01:00
base64 GIT: Header file updates 2019-10-31 14:48:44 +00:00
BinSum GIT: Header file updates 2019-10-31 14:48:44 +00:00
bitops GIT: Header file updates 2019-10-31 14:48:44 +00:00
bitSet1 ENH: unify read/write for containers 2021-03-16 08:47:58 +00:00
bitSet2 ENH: add bitSet::null() and clarify some documentation 2020-12-08 11:58:28 +01:00
boolList ENH: add bitSet::null() and clarify some documentation 2020-12-08 11:58:28 +01:00
boolVector ENH: boolVector for specialized bundling of boolean values 2020-06-04 16:56:21 +02:00
boundBox GIT: Header file updates 2019-10-31 14:48:44 +00:00
callback GIT: Header file updates 2019-10-31 14:48:44 +00:00
cellModels GIT: Header file updates 2019-10-31 14:48:44 +00:00
charList ENH: add read/write specialization for lists of character data 2021-03-16 08:47:58 +00:00
checkDecomposePar ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
Circulator GIT: Header file updates 2019-10-31 14:48:44 +00:00
clock ENH: inline and extend clockValue, clockTime 2020-05-29 15:48:21 +02:00
codeStream ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
colourTables GIT: Header file updates 2019-10-31 14:48:44 +00:00
CompactIOList CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
CompactListList GIT: Header file updates 2019-10-31 14:48:44 +00:00
complex ENH: correct pow(complex, ..) functions (fixes #1638) 2020-03-19 12:31:49 +01:00
constantFields STYLE: prefix zero/one with Foam:: qualifier 2020-11-19 16:55:29 +01:00
contiguous Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
coordinateSystem ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
copyFile ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
cplusplus1 GIT: Header file updates 2019-10-31 14:48:44 +00:00
cpuInfo GIT: Header file updates 2019-10-31 14:48:44 +00:00
cstring GIT: Header file updates 2019-10-31 14:48:44 +00:00
cyclic STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
decomposedBlockData ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
decomposePar ENH: reinstate Test-decomposePar -cellDist, add -cellDist-internal 2020-12-21 09:17:37 +01:00
delete STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
DiagTensor STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
dictionary ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
dictionary2 ENH: add ROOTGREAT constants (symmetry with ROOTSMALL) 2020-10-19 21:14:17 +02:00
dictionary4 Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
Dictionary STYLE: find(), cfind() methods instead of lookupPtr() 2020-03-11 22:05:15 +01:00
dictionaryCopy ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
dictionaryTokens ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
dimensionedType Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
dimensionSet GIT: Header file updates 2019-10-31 14:48:44 +00:00
dimField BUG: compilation error for DimensionedField::T() fixes #1868 2020-10-07 09:18:23 +02:00
DirLister ENH: rationalize some string methods. 2019-11-11 18:50:00 +01:00
Distribution GIT: Header file updates 2019-10-31 14:48:44 +00:00
DLList Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
DynamicField GIT: Header file updates 2019-10-31 14:48:44 +00:00
dynamicIndexedOctree GIT: Header file updates 2019-10-31 14:48:44 +00:00
dynamicLibrary ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
DynamicList STYLE: adjust tests and one code instance for updated labelRange 2020-09-23 10:46:04 +02:00
edges GIT: Header file updates 2019-10-31 14:48:44 +00:00
ensightFile GIT: Header file updates 2019-10-31 14:48:44 +00:00
Enum ENH: align Enum methods with HashTable 2020-11-25 19:53:02 +01:00
error ENH: add a Pstream::shutdown() method (#1660) 2020-04-01 12:33:39 +02:00
etcFiles ENH: exposed access to compile-time project, etc directories 2020-05-11 14:14:59 +02:00
exprEntry ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
extendedStencil GIT: Header file updates 2019-10-31 14:48:44 +00:00
externalFileCoupler ENH: relocate externalFileCoupler from finiteVolume to meshTools 2020-06-10 15:29:07 +02:00
faceHashing ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
faces GIT: Header file updates 2019-10-31 14:48:44 +00:00
fft ENH: support construct/reset refPtr from autoPtr and unique_ptr (#1775) 2020-08-11 13:15:28 +02:00
field1 STYLE: prefix zero/one with Foam:: qualifier 2020-11-19 16:55:29 +01:00
fieldDependency GIT: Header file updates 2019-10-31 14:48:44 +00:00
fieldMapping RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
fieldTypes GIT: Header file updates 2019-10-31 14:48:44 +00:00
fileName ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
fileNameClean ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
fileNameOS GIT: Header file updates 2019-10-31 14:48:44 +00:00
fileOperation1 ENH: robuster fileOperations splitProcessorPath 2020-12-08 11:58:28 +01:00
findCell-octree GIT: Header file updates 2019-10-31 14:48:44 +00:00
findSphereFeatureEdges-octree STYLE: relocate nonCoupledBoundaryTree into meshSearcher 2020-02-24 18:41:02 +01:00
findTimes GIT: Header file updates 2019-10-31 14:48:44 +00:00
FixedList ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
FixedList2 GIT: Header file updates 2019-10-31 14:48:44 +00:00
flatOutput1 ENH: improve flexiblity for flat output of items (#1929) 2020-11-25 19:53:03 +01:00
foamEnv ENH: use hasEnv() instead of env() for naming symmetry with getEnv, setEnv 2020-05-11 10:12:26 +02:00
foamToMetisGraph CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
foamVersion ENH: reduce dependencies for foamVersion.H 2020-05-29 15:48:20 +02:00
fstreamPointer ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
Function1 RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
fvc STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
fvc2D STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
fvSolutionCombine ENH: disentangle testing and quoting of regex characters 2021-04-19 16:33:42 +00:00
GAMGAgglomeration GIT: Header file updates 2019-10-31 14:48:44 +00:00
globalIndex GIT: Header file updates 2019-10-31 14:48:44 +00:00
globalMeshData CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
graph STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
graphXi STYLE: use Time::printExecutionTime() method 2020-08-07 09:24:56 +02:00
hashedWordList Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
Hashing1 ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
Hashing2 ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
HashingSpeed ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
HashPtrTable ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
HashSet ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
HashTable1 GIT: Header file updates 2019-10-31 14:48:44 +00:00
HashTable2 ENH: HashTable::emplace_set() method, HashPtrTable support for unique_ptr 2020-07-28 08:40:43 +02:00
HashTable3 Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
HashTable4 GIT: Header file updates 2019-10-31 14:48:44 +00:00
hexRef8 RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
IFstream ENH: add stringOps::inplaceRemoveSpace() 2020-02-19 23:36:46 +01:00
IjkField STYLE: adjust tests and one code instance for updated labelRange 2020-09-23 10:46:04 +02:00
IListStream GIT: Header file updates 2019-10-31 14:48:44 +00:00
IndirectList ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00
instant GIT: Header file updates 2019-10-31 14:48:44 +00:00
IntRange ENH: add identity(IntRange) and Istream operator for common types 2020-10-01 11:35:43 +02:00
io GIT: Header file updates 2019-10-31 14:48:44 +00:00
IOField ENH: provide setter methods for IOobject read/write options etc. 2021-03-17 15:10:00 +01:00
IOobjectList Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
ISLList GIT: Header file updates 2019-10-31 14:48:44 +00:00
IStringStream GIT: Header file updates 2019-10-31 14:48:44 +00:00
ITstream GIT: Header file updates 2019-10-31 14:48:44 +00:00
labelRanges ENH: add identity(IntRange) and Istream operator for common types 2020-10-01 11:35:43 +02:00
leastSquareGrad CONT: Addition of compressibleIsoInterFOam and PLIC 2020-06-09 08:11:04 +01:00
limits ENH: add pTraits for uint8_t 2020-10-07 09:17:00 +02:00
liquid GIT: Header file updates 2019-10-31 14:48:44 +00:00
List ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
List2 GIT: Header file updates 2019-10-31 14:48:44 +00:00
List3 ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
ListOps ENH: noexcept size_bytes() method for lists 2021-03-09 09:49:31 +01:00
ListOps2 ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
machine-sizes GIT: Header file updates 2019-10-31 14:48:44 +00:00
Map GIT: Header file updates 2019-10-31 14:48:44 +00:00
mapDistributePolyMesh RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
mappedPatch GIT: Header file updates 2019-10-31 14:48:44 +00:00
MathFunctions ENH: 'Math' namespace for mathematical functions 2021-02-16 18:08:50 +01:00
matrices GIT: remove leading/trailing blank lines, trailing whitespace 2020-06-17 10:46:26 +02:00
maxMem STYLE: use std:: qualifier on ::abort, ::exit 2019-04-03 20:24:30 +02:00
memInfo GIT: Header file updates 2019-10-31 14:48:44 +00:00
mesh GIT: Header file updates 2019-10-31 14:48:44 +00:00
minMax1 GIT: Header file updates 2019-10-31 14:48:44 +00:00
minMax2 GIT: Header file updates 2019-10-31 14:48:44 +00:00
mkdir GIT: Header file updates 2019-10-31 14:48:44 +00:00
momentOfInertia ENH: support predicate checks for argList (similar to dictionary methods) 2020-06-02 13:51:18 +02:00
multiDimPolyFitter CONT: Addition of compressibleIsoInterFOam and PLIC 2020-06-09 08:11:04 +01:00
multiWorld RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
mvBak ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
NamedEnum COMP: incorrect placement of compiler attributes 2020-02-18 13:51:20 +01:00
nullObject ENH: add swallow assignment to nullObject 2020-05-29 15:55:27 +02:00
objectRegistry STYLE: some general spelling fixes 2020-05-04 09:15:21 +02:00
objectRegistry2 GIT: Header file updates 2019-10-31 14:48:44 +00:00
OCountStream ENH: add OFstream rewind() method. 2021-03-23 18:00:14 +01:00
ODE GIT: Header file updates 2019-10-31 14:48:44 +00:00
OListStream ENH: improvements for token methods 2021-03-09 09:23:41 +01:00
openmp GIT: Header file updates 2019-10-31 14:48:44 +00:00
OSspecific GIT: Header file updates 2019-10-31 14:48:44 +00:00
OStringStream GIT: Header file updates 2019-10-31 14:48:44 +00:00
OTstream ENH: add ITstream append and seek methods. 2019-12-06 17:23:59 +01:00
PackedList ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
PackedList1 STYLE: adjust tests and one code instance for updated labelRange 2020-09-23 10:46:04 +02:00
PackedList2 GIT: Header file updates 2019-10-31 14:48:44 +00:00
parallel ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00
parallel-communicators ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00
parallel-external-init CONFIG: rationalize mpi config tuning (#1910) 2020-11-11 18:36:01 +01:00
parallel-nonBlocking ENH: add UPstream::subProcs() static method 2020-09-28 14:26:07 +02:00
parallelOverset RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
passiveParticle GIT: Header file updates 2019-10-31 14:48:44 +00:00
PatchEdgeFaceWave GIT: Header file updates 2019-10-31 14:48:44 +00:00
PatchFunction1 RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
patchRegion RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
PatchTools STYLE: use labelRange for identity 2020-11-25 19:53:02 +01:00
PDRblockMesh RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
plotFunction1 ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
PointEdgeWave GIT: Header file updates 2019-10-31 14:48:44 +00:00
pointField GIT: Header file updates 2019-10-31 14:48:44 +00:00
Polynomial CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
polynomialEqns CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
predicates GIT: Header file updates 2019-10-31 14:48:44 +00:00
prefixOSstream GIT: Header file updates 2019-10-31 14:48:44 +00:00
primitivePatch STYLE: update PrimitivePatch (#1648) 2020-04-30 15:52:42 +02:00
primitives ENH: more consistent use of IOstreamOption 2021-03-16 08:47:59 +00:00
pTraits STYLE: some general spelling fixes 2020-05-04 09:15:21 +02:00
PtrList ENH: support emplace methods and std::unique_ptr for PtrList-derivatives 2020-07-28 08:40:43 +02:00
PtrListDictionary STYLE: find(), cfind() methods instead of lookupPtr() 2020-03-11 22:05:15 +01:00
PtrMap Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
quaternion GIT: Header file updates 2019-10-31 14:48:44 +00:00
Random CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
readDir GIT: Header file updates 2019-10-31 14:48:44 +00:00
reconstruct GIT: Header file updates 2019-10-31 14:48:44 +00:00
reconstructedDistanceFunction RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
refPtr ENH: add operator* to refPtr - makes it more like autoPtr 2021-03-16 08:47:58 +00:00
regex1 ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
rigidBodyDynamics REL: Release preparations 2019-12-23 09:49:23 +00:00
router RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
scalarOps ENH: add scalarOps with divide-by-zero protection 2019-12-07 16:55:18 +01:00
scalarPredicates GIT: Header file updates 2019-10-31 14:48:44 +00:00
scalarRanges GIT: Header file updates 2019-10-31 14:48:44 +00:00
searchableSphere ENH: support general searchable spheroid (issue #1901) 2020-10-28 16:04:12 +01:00
setAlphaField/case1 RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
sha1 GIT: Header file updates 2019-10-31 14:48:44 +00:00
sigFpe GIT: Header file updates 2019-10-31 14:48:44 +00:00
simpleMatrix GIT: Header file updates 2019-10-31 14:48:44 +00:00
sizeof ENH: more consistent use of IOstreamOption 2021-03-16 08:47:59 +00:00
slicedField GIT: Header file updates 2019-10-31 14:48:44 +00:00
sliceRange ENH: add identity(IntRange) and Istream operator for common types 2020-10-01 11:35:43 +02:00
SLList Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
sort Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
speed STYLE: adds comments in empty Make/options files 2018-11-13 15:21:13 +01:00
SphericalTensor STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
SphericalTensor2D STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
spline ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
string ENH: improve hashing overloads of string-types and HashTable/HashSet 2021-04-19 16:33:42 +00:00
string2 ENH: stringOps::findTrim helper 2019-12-13 12:10:53 +01:00
stringList ENH: consistency improvements for keyType and wordRe 2021-04-19 16:33:42 +00:00
stringSplit ENH: consistency improvements for keyType and wordRe 2021-04-19 16:33:42 +00:00
SubField STYLE: header format 2019-12-13 12:33:23 +01:00
surfaceIntersection ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
surfaceMeshConvert ENH: support predicate checks for argList (similar to dictionary methods) 2020-06-02 13:51:18 +02:00
surfaceReading ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
surfaceWriter ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
SymmTensor STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
SymmTensor2D STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
syncTools ENH: syncTools: specialisation for contiguous data. Fixes #1986. 2021-01-20 09:33:44 +00:00
sysInfo GIT: Header file updates 2019-10-31 14:48:44 +00:00
tensor2D ENH: add zip/unzip functions for complexField and vector2DField 2019-11-15 11:26:45 +01:00
Tensor STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
Tensor2D STYLE: include scalar.H instead of floatScalar.H/doubleScalar.H separately 2020-05-29 15:55:56 +02:00
tensorFieldFields1 STYLE: prefix zero/one with Foam:: qualifier 2020-11-19 16:55:29 +01:00
tensorFields1 STYLE: prefix zero/one with Foam:: qualifier 2020-11-19 16:55:29 +01:00
testFunctionObjects ENH: add testFunctionObjects library with fakeError function object 2020-07-24 09:04:07 +02:00
TestTools ENH: 'Math' namespace for mathematical functions 2021-02-16 18:08:50 +01:00
tetTetOverlap GIT: Header file updates 2019-10-31 14:48:44 +00:00
thermoMixture GIT: Header file updates 2019-10-31 14:48:44 +00:00
timeSelector GIT: Header file updates 2019-10-31 14:48:44 +00:00
tmp ENH: support construct/reset refPtr from autoPtr and unique_ptr (#1775) 2020-08-11 13:15:28 +02:00
token ENH: construct token::compound from object and token from compound (#1879) 2020-10-15 17:21:33 +02:00
tokenize ENH: support predicate checks for argList (similar to dictionary methods) 2020-06-02 13:51:18 +02:00
triTet STYLE: adds comments in empty Make/options files 2018-11-13 15:21:13 +01:00
Tuple2 ENH: allow default parameter for Tuple2 (#1827) 2020-09-07 09:37:05 +02:00
UDictionary GIT: Header file updates 2019-10-31 14:48:44 +00:00
UIListStream GIT: Header file updates 2019-10-31 14:48:44 +00:00
UIndirectList GIT: Header file updates 2019-10-31 14:48:44 +00:00
UList Merge commit 'e9219558d7' into develop-v1906 2019-12-05 11:47:19 +00:00
UniformField ENH: UniformList to wrap a single value into a list-like container 2020-09-16 17:27:56 +02:00
unitConversion GIT: Header file updates 2019-10-31 14:48:44 +00:00
vector ENH: noexcept size_bytes() method for lists 2021-03-09 09:49:31 +01:00
vectorTools STYLE: use FOAM_UTILITIES in Make/options 2017-04-07 08:17:43 +02:00
volField RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00
volPointInterpolation GIT: Header file updates 2019-10-31 14:48:44 +00:00
vtkSeriesWriter ENH: improve consistency of fileName handling windows/non-windows (#2057) 2021-04-19 16:33:42 +00:00
vtmWriter STYLE: some tests built into FOAM_APPBIN (should be FOAM_USER_APPBIN) 2020-06-05 16:34:51 +02:00
wallDist GIT: Header file updates 2019-10-31 14:48:44 +00:00
wallDistDyM GIT: Header file updates 2019-10-31 14:48:44 +00:00
wmake1 CONFIG: improve support for compiler/link options (#1830) 2020-09-07 09:45:51 +02:00
wordRe ENH: consistency improvements for keyType and wordRe 2021-04-19 16:33:42 +00:00
zoneDistribute RELEASE: Updated version to v2012 2020-12-23 10:01:39 +01:00