- Dec 21, 2017
-
-
Mark OLESEN authored
-
Mark OLESEN authored
* DynList construction with integer parameter: DynList<T>(int32_t) - eg DynList<T> lst(10) Candidates are DynList(const label) template<class ListType> DynList(const ListType& lst) It picks the second as the beter match (error). Resolve by adding DynList(int32_t) constructor for label-size=64 * Similar problem with copy assignment. dyList = -1 (for example) picks template<class ListType> operator=(const ListType& lst) Resolve by replacing general list assignment with assignments for DynList, UList, FixedList
-
- 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.
-
Mark OLESEN authored
-
- Nov 22, 2017
-
-
Mark OLESEN authored
-
- Nov 04, 2017
-
-
Mark OLESEN authored
- use range-for when iterating over HashSet - prefer forAllIters(), forAllConstIters() with automatic decltype
-
Mark OLESEN authored
containsAtPosition -> find contains -> found lastElement -> last removeLastElement -> remove() removeElement(int) -> [TODO] remove(int, bool) fcElement -> fcValue rcElement -> rcValue
-
- Oct 27, 2017
-
-
Mark OLESEN authored
- Eg, readIfPresent() instead of found() followed by lookup()
-
Mark OLESEN authored
-
Mark OLESEN authored
- use FUNCTION_NAME for IO checks
-
Mark OLESEN authored
-
Mark OLESEN authored
-
Andrew Heather authored
-
- Sep 25, 2017
-
-
Mark OLESEN authored
-
- Sep 20, 2017
-
-
Franjo authored
-
- Sep 14, 2017
-
-
Andrew Heather authored
-
- Aug 14, 2017
-
-
Franjo authored
-
- Jul 31, 2017
-
-
Franjo authored
-
- Jul 30, 2017
- Jul 29, 2017
-
-
- May 26, 2017
-
-
Tomislav Maric authored
-
Tomislav Maric authored
-
Tomislav Maric authored
unallocatedLabelList is not available as a typedef in OpenFOAM-dev, and UList<Type> is available everywhere
-
Tomislav Maric authored
-
- May 25, 2017
-
-
Tomislav Maric authored
-
Tomislav Maric authored
-
Philippose authored
-
Tomislav Maric authored
Using UPstream::commsTypes::blocking everywhere.This should work on other versions besides -dev.
-
- Apr 16, 2017
-
-
Franjo authored
-