"README.md" did not exist on "6472acf0f5d08ef20e899a2d23ff993e08a582e5"
- Nov 16, 2023
-
-
Oliver Sander authored
They are only used in one single .cc file, and that is very unlikely to change.
-
Oliver Sander authored
This fixes a few warnings.
-
Oliver Sander authored
I don't think people still use that machine.
-
Missing variable found as a result of reduced variable scope
-
Cppcheck found this (duplicateConditionalAssign)
-
- Nov 07, 2023
-
-
Christoph Grüninger authored
Found by cppcheck
-
Christoph Grüninger authored
Found by cppcheck
-
Christoph Grüninger authored
It is not sure that g is set, now it will be at least NULL. Found by cppcheck
-
Christoph Grüninger authored
Reduces risk of misuse or typos, improve readability. Found by cppcheck
-
- Nov 05, 2023
-
-
Oliver Sander authored
Fix a couple of cppcheck findings See merge request !227
-
Christoph Grüninger authored
This prevents shadowing of i and j Found by cppcheck
-
Christoph Grüninger authored
Move dereference after NULL check Found by cppcheck
-
Christoph Grüninger authored
Found by cppcheck
-
Christoph Grüninger authored
Rename i to rule to use proper variable in debug output. This was found by cppcheck
-
Christoph Grüninger authored
Instead of printing the total of inspected elements, the code just pointed one element after the array. Add proper code to sum up the number of inspected elements. This was found by cppcheck
-
- Nov 04, 2023
-
-
Christoph Grüninger authored
After the for loop, i is beyond the last element. Founc by cppcheck
-
Christoph Grüninger authored
Saves a memory allocation. Found by cppcheck
-
Oliver Sander authored
[cmake] Require CMake 3.16 or newer See merge request !226
-
- Oct 30, 2023
-
-
Christoph Grüninger authored
-
- Oct 28, 2023
-
-
Oliver Sander authored
Simplifications and removal of unused code See merge request !225
-
Oliver Sander authored
They are not actually used.
-
Oliver Sander authored
Instead, store them directly in the 'domain' class. This simplifies the structure of the code. It also saves a bit of memory, because the meta data for the environment heap is not needed anymore.
-
Oliver Sander authored
Instead, store it directly in the 'domain' data structure. This simplifies setting up the domain boundary a little bit. Also, it saves a bit of memory, because environment items store some extra information. In particular, they store a name in an array of fixed size char[128]. In the case of linear_segment objects, however, these names are never actually used.
-
- Oct 19, 2023
-
-
Oliver Sander authored
Subdomains are not used anymore.
-
- Oct 17, 2023
-
-
Oliver Sander authored
These numbers are not used anymore.
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
They are not shorter or more readable than 0, 1, 2.
-
Oliver Sander authored
-
- Oct 13, 2023
-
-
Oliver Sander authored
Fix 'thePatch may be uninitialized' warning See merge request !224
-
Oliver Sander authored
Mainly by reducing its scope. Also, it appeared in the signature of the CreateLine method without being needed there.
-
- Sep 29, 2023
-
-
Santiago Ospina De Los Ríos authored
Adapt dune_add_library by specifying EXPORT_NAME See merge request !221
-
- Sep 28, 2023
-
-
Oliver Sander authored
Use FieldVector for point coordinates See merge request !220
-
* Add EXPORT_NAME property to add_dune_library * Link explicitly against Dune::Common
-
Oliver Sander authored
Rather than in a C array. This allows the compiler to check better whether we are using the position arrays correctly.
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
This patch is a first step towards replacing C arrays that represent points by FieldVector. The motivation is to have the compiler enforce a bit more type safety. This patch uses casts in a few places to go from DOUBLE[] to FieldVector. They will disappear in later commits when more arrays are replaced by FieldVector.
-
Oliver Sander authored
-