- Jul 22, 2024
-
-
Patrick Jaap authored
This generalizes the necessary regularization for the umfpacktest and makes it usable for other algorithms. A hint in Cholmodtest is added and the other tests using this methods are kept unchanged. The method was also cleaned up and modernized. Co-authored-by:
Santiago Ospina De Los Ríos <sospinar@gmail.com>
-
- Jul 01, 2024
-
-
- Jun 10, 2024
-
-
Markus Blatt authored
Tests failed in Suitspares or UMFPACK was not there.
-
- Jun 09, 2024
-
-
Christoph Grüninger authored
Use the left-hand side as a condition
-
Christoph Grüninger authored
It was removed 9 years ago.
-
Christoph Grüninger authored
Remove `isPublic` altogether. Found by Cppcheck (variableScope).
-
Christoph Grüninger authored
Found by Cppcheck (unusedVariable).
-
Christoph Grüninger authored
Found by Cppcheck.
-
Christoph Grüninger authored
This is less about performance and mor about silencing the Clazy warnings. Found by Clazy (range-loop-reference)
-
- Jun 03, 2024
-
-
Simon Praetorius authored
-
Simon Praetorius authored
-
Simon Praetorius authored
-
-
-
-
-
- Jun 02, 2024
-
-
Simon Praetorius authored
-
Simon Praetorius authored
-
- May 31, 2024
-
-
Simon Praetorius authored
This reverts merge request !564
-
- Apr 18, 2024
-
-
Alexander Müller authored
-
- Apr 17, 2024
-
-
Simon Praetorius authored
-
Simon Praetorius authored
-
Alexander Müller authored
-
- Apr 12, 2024
-
-
Simon Praetorius authored
-
- Mar 22, 2024
-
-
Carsten Gräser authored
Remove allocator template parameter from the classes `base_array_unmanaged`, `compressed_base_array_unmanaged`, `block_vector_unmanaged`, `compressed_block_vector_unmanaged`, and `CompressedBlockVectorWindow`. All of these classes do not manage memory on their own. The provided allocator was only used to deduce `size_type`. The latter is now provided as template parameter explicitely. Notice that this (seemigly breaking) change is safe, because all these classes are clearly marked as implementation details that should not be used outside of dune-istl.
-
- Mar 03, 2024
-
-
Carsten Gräser authored
The `MatrixIndexSet` class provides access to an incomplete subset of its internal data. While the number of rows is exported, the number of cols and the column indices per row have been missing so far. This was an oversight, since one can hardly use the class without this, unless one relies on the dedicated `exportIdx()` method for `BCRSMatrix`. With the missing data exported, one can now easily use `MatrixIndexSet` to build patterns for other sparse matrix classes.
-
- Feb 10, 2024
-
-
Oliver Sander authored
No fixes necessary.
-
Oliver Sander authored
-
Oliver Sander authored
And test it!
-
Oliver Sander authored
... and move it in front of the method that calls it. AIUI this facilitates template deduction.
-
Oliver Sander authored
Also, add a test for this. It seems that not many people use this method. Otherwise the bug would have been noticed much earlier.
-
- Jan 27, 2024
-
-
Christoph Grüninger authored
-
- Jan 26, 2024
-
-
Carsten Gräser authored
Before this patch `BCRSMatrix::addindex()` was used on individual column indices. This is slow because each insertion does a binary search although the inserted indices are already sorted. Bulk-inserting whole rows with `setIndices()` improves on this significantly but still does a non-necessary sort. The latter is avoided by the new `BCRSMatrix::setIndicesNoSort()` method.
-
Carsten Gräser authored
This is similar to `setIndices()` but does not sort indices after insertion which allows to avoid an additional sort on an already sorted range. The latter e.g. is the case when using sorted containers as it is done in `MatrixIndexSet`.
-
- Jan 18, 2024
-
-
Christoph Grüninger authored
-
Christoph Grüninger authored
Add line breaks. Remove indentation as Doxygen treats it as <pre>.
-
Christoph Grüninger authored
-
Christoph Grüninger authored
-
Lisa Julia Nebel authored
This tests makes sure the matrices in the hierarchy get created in a deterministic way when the flag 'useFixedOrder' of the coarseningCriterion is set to true.
-
-