- May 18, 2021
-
-
Mark OLESEN authored
- appendUniq() instead of appendIfNotIn() - IOobject::selectIO instead of decompositionModel::selectIO
-
- Mar 17, 2021
-
-
Mark OLESEN authored
-
- Jan 27, 2021
-
-
Mark OLESEN authored
-
- Jun 07, 2020
-
-
Mark OLESEN authored
-
- Jan 15, 2020
-
-
Mark OLESEN authored
-
- Jan 10, 2020
-
-
Mark OLESEN authored
-
OpenFOAM bot authored
-
- Oct 02, 2019
-
-
Mark OLESEN authored
- use keyType::LITERAL instead of (false, false)
-
- Sep 25, 2019
-
-
Mark OLESEN authored
-
- Aug 13, 2019
-
-
Mark OLESEN authored
COMP: change from contiguous as function to is_contiguous as struct See merge request !6
-
- Aug 09, 2019
-
-
Mark OLESEN authored
-
- May 31, 2019
-
-
Mark OLESEN authored
-
- Apr 29, 2019
-
-
Mark OLESEN authored
-
- Jan 09, 2019
-
-
Mark OLESEN authored
- makes benefit of changes in OpenFOAM-v1812 to avoid future uncertainty about which 'normal' is meant.
-
- Dec 21, 2018
-
-
Mark OLESEN authored
Final content for 1812 release
-
- Dec 11, 2018
-
-
Mark OLESEN authored
-
- Dec 03, 2018
-
-
Mark OLESEN authored
Temporary fix for regexp entries in patchnames See merge request !5
-
This reverts commit 0cb890e0. - fixes regression noted in issue #6 - Note that this is not a style change, but a fundamental issue with how cfmesh is currently handling the patch names. In a few places the names are treated as regular expressions. A proper keyType or wordRe should have been used on the input, but needs to be addressed in the future.
-
- Nov 03, 2018
-
-
Mark OLESEN authored
-
- Jul 02, 2018
-
-
Mark OLESEN authored
-
- Jun 28, 2018
-
-
Mark OLESEN authored
Final content for 1806 release Closes #4 See merge request !4
-
- Apr 27, 2018
-
-
Mark OLESEN authored
-
- Apr 25, 2018
-
-
Mark OLESEN authored
ENH: inherit DynList from UList and use FixedList/List for internal storage See merge request !3
-
- Apr 23, 2018
-
-
Mark OLESEN authored
- improves alignment of DynList with other OpenFOAM list containers (especially DynamicList), increases code reuse, simplifies memory management.
-
- Mar 26, 2018
-
-
Mark OLESEN authored
-
- Feb 21, 2018
-
-
Mark OLESEN authored
- avoids needless creation of a regExg and comparison when the content is a plain string anyhow
-
- Jan 22, 2018
-
-
Mark OLESEN authored
-
- Jan 09, 2018
-
-
Mark OLESEN authored
- more consistent with other OpenFOAM containers. With the exception of meshSubset, the other classes already had the found() and find() methods added previously.
-
- Jan 08, 2018
-
-
Mark OLESEN authored
- consistent with the static sizing of FixedList, but signed for convenience
-
Mark OLESEN authored
* The generic templated constructor and assignment Eg, template<class ListType> DynList(const ListType& lst) Provides the best candidate when there is a int32/int64 mismatch: DynList<int64_t> list(10) The cleanest solution would be avoid the generic templated versions entirely, but they are needed when converting from rows of graph data (which are stored as LongList). However, this approach introduced some odd regressions.
-
Mark OLESEN authored
- erroneous conversion from LongList to DynList
-
Mark OLESEN authored
-
- Dec 18, 2017
-
-
Mark OLESEN authored
-
- Dec 13, 2017
-
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Mark OLESEN authored
Namespace and tutorial adjustments See merge request !2
-
Mark OLESEN authored
Integration update methods See merge request !1
-
Mark OLESEN authored
The tutorials cartesianMesh/bunnyOctree, cartesianMesh/sBendOctree do not run through very smoothly, so tagged as 'Optional' for now
-
Mark OLESEN authored
- avoids potential collisions and allows easier migration of classes into OpenFOAM itself - use fully-qualified names in implementation
-
Mark OLESEN authored
- the previous code used a dual-purposed graphRow for non-const/const access. However, clang 4.0 rightly identifies there being no constructor path from "graphRow<T>" to a "graphRow<const T>". Since the row-access is a somewhat similar concept to an STL-iterator, now provide non-const and const versions of the row access.
-