- 30 Apr, 2019 5 commits
-
-
Mark OLESEN authored
- previously would have different SHA1 depending on whether the string was a C-string, a C++-string or if the SHA1 was calculated directly or via the OSHA1stream. - SHA1("string") - OSHA1stream << "string"; - OSHA1stream << string("string"); By avoiding string quoting on output, they now all deliver the same result. This also means that the following will no longer change the SHA1 content, since it does not add anything: osha<< string() << string() << string() << string(); This would have previously add a pair of double quotes each time!
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Johan Roenby authored
- failed when nAlphaSubCycles > 1 and nOuterCorrectors > 1. Fixed thanks to Henning Scheufler (DLR Bremen).
-
- 29 Apr, 2019 4 commits
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
mattijs authored
-
Mark OLESEN authored
-
- 28 Apr, 2019 1 commit
-
-
Mark OLESEN authored
- Eg, with surface writers now in surfMesh, there are fewer libraries depending on conversion and sampling. COMP: regularize linkage ordering and avoid some implicit linkage (#1238)
-
- 26 Apr, 2019 1 commit
-
-
Mark OLESEN authored
- avoids unnecessary cyclic dependency
-
- 29 Apr, 2019 1 commit
-
-
Mark OLESEN authored
-
- 26 Apr, 2019 3 commits
-
-
Mark OLESEN authored
- change internal naming from 'EXE_EXT' to 'EXT_EXE' for symmetry with 'EXT_SO'
-
Mark OLESEN authored
- continuation of commit 0e7954c2 ENH: downgrade abort() to exit() in some places (#1238)
-
Mark OLESEN authored
-
- 29 Apr, 2019 3 commits
-
-
Andrew Heather authored
Feature indirect lists See merge request OpenFOAM-plus!253
-
Mattijs Janssens authored
See merge request OpenFOAM-plus!254
-
mattijs authored
-
- 26 Apr, 2019 4 commits
-
-
Mark OLESEN authored
- now also track if the cellSet or cellZone has changed on point motion.
-
Mark OLESEN authored
- also available as equal() member function
-
Mark OLESEN authored
-
Mark OLESEN authored
- make I/O operators global (non-member)
-
- 25 Apr, 2019 5 commits
-
-
Mark OLESEN authored
-
mattijs authored
Patch contributed by Gavin Ridley.
-
Mark OLESEN authored
-
Mark OLESEN authored
-
mattijs authored
- in case of cell overlapping a patch : set cell to hole always - in case of cell changing from hole to calculated: set to hole and continue. Do so before 'flood filling' holes. Patch supplied by Nicolas Edh.
-
- 24 Apr, 2019 8 commits
-
-
Mark OLESEN authored
-
Mark OLESEN authored
- unnecessary. Can deduce labelRange from the pair of labels. These are all the same: list[labelRange(18,3)] = 100; list[labelRange{18,3}] = 100; list[{18,3}] = 100; Removing the run-time handling of std::initializer_list in favour of compile-time deduction allows the future use of sliceRange as well. Eg, list[sliceRange{18,3,2}] = 100; list[{18,3,2}] = 100;
-
mattijs authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
-
- 18 Apr, 2019 1 commit
-
-
mattijs authored
- Enhancements provided by Y. Inoue at RIST (http://www.hpci-office.jp) - Use allToAll to only swap local data (excludes master processor; saves memory) - Memory saving is noticeable >= 4000 cores
-
- 17 Apr, 2019 4 commits
-
-
mattijs authored
This fixed the MeshObject on Time but produced problems for the non-regIOobject MeshObjects.
-
Andrew Heather authored
-
Andrew Heather authored
-
Andrew Heather authored
-