- Nov 17, 2016
-
-
There are various classes in dune-istl that are effectively implementation classes internal to dune-istl. A few of them are base_array_unmanaged, base_array_window, compressed_base_array_unmanaged,block_vector_unmanaged, BlockVectorWindow, compressed_block_vector_unmanaged, CompressedBlockVectorWindow See #22 for a brief discussion. This patch moves the classes into the namespace 'Imp'. That way it is clear that they are internal. All code outside of dune-istl using those classes will break, but does such code really exist?
-
- Nov 15, 2016
-
-
Robert K authored
is selected. Since UMFPack does not support this, it cannot be used in this case.
-
- Nov 10, 2016
-
-
Felix Gruber authored
-
Felix Gruber authored
-
Oliver Sander authored
By using the doxygen \internal command.
-
- Oct 25, 2016
-
-
Carsten Gräser authored
The implementation for this was hidden in the base classes before and relied on undefined behaviour by using a downcast. Now it is explicitly implemented for the derived classes which also makes it more visible to users.
-
Carsten Gräser authored
These constructors and assignments from base class are all using a downcast which may result in undefined behaviour. Since this is potentially dangerous and not used anywhere in the core modules, this patch removes those methods.
-
Carsten Gräser authored
These constructors and assignments are all implemented using a downcast to derived class and may lead to undefined behaviour. This commit removes the checks for these methods in preparation for their removal.
-
- Oct 21, 2016
-
-
Ansgar Burchardt authored
-
- Oct 17, 2016
-
-
Carsten Gräser authored
The doc now correctly describes * that the overflow area is used during compress and not during assembly * the meaning of avg and overflowsize * the numbering dependence of this build mode * the magic number 4 * the late failure during compress()
-
This fixes the clang compiler warnings about tautological compare when idxtype is unsigned. For clang behaviour see [1]. [1]: https://llvm.org/bugs/show_bug.cgi?id=8682
-
Carsten Gräser authored
This reverts ddf49c23 and removes the check if the average parameter behaves as expected.
-
- Oct 12, 2016
-
-
Christoph Grüninger authored
similar to Matlab matrix writer
-
- Sep 13, 2016
-
-
Christoph Grüninger authored
Remove stamp-vc file.
-
- Sep 12, 2016
-
-
Carsten Gräser authored
Since the istl view is, that a matrix is a container of rows, it should have a size method.
-
Carsten Gräser authored
This is in fact an _unsafe_ downcast to a derived class. Accessing members via this pointer is undefined if it is not guaranteed that the passed pointer points to an object of the _derived_ class - even if the memory layout is the same. In this case this static_cast acts like a reinterpret_cast.
-
Carsten Gräser authored
If the correct average is provided, compress() may still fail if more than the average numebr of entries are added to an early row (e.g. the first one)
-
- Aug 18, 2016
-
-
Felix Gruber authored
Due to a confusion between the number of lines N and the number of columns M, Matrix::transpose() gave wrong results for matrices with N != M.
-
Felix Gruber authored
Due to a bug in Matrix::transpose() it will give wrong results for non-quadratic matrices. Thus the new test case fails for the moment.
-
- Aug 10, 2016
-
-
Timo Koch authored
Remove output that printed the matrix for parallel runs for small grids n<20.
-
- Aug 05, 2016
-
-
- Jul 28, 2016
-
-
René Heß authored
According to git blame the last time these constructors were changed was in 2011.
-
- Jul 27, 2016
-
-
Oliver Sander authored
-
Oliver Sander authored
Simplifies the memory management.
-
- Jul 18, 2016
-
-
Jonathan Youett authored
-
- Jul 14, 2016
-
-
Marco Agnese authored
-
- Jul 12, 2016
-
-
Dominic Kempf authored
-
- Jun 29, 2016
-
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach. Along the way this also fixes the bug that operator<< ignores the passed stream and uses std::cout instead.
-
Carsten Gräser authored
The new implementation is based on Hybrid::forEach
-
Carsten Gräser authored
Test with non-zero matrix and print results
-
Carsten Gräser authored
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach. This also adds some comments and uses proper variable names to make the nan-tracking easier to understand.
-
Carsten Gräser authored
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach.
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach.
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach.
-
Carsten Gräser authored
These separate impelmentations could be replaced by a single one, once we have IsNumber. Currently we could use std::is_arithmetic instead, but that's not the topic of this change.
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach.
-
Carsten Gräser authored
Reimplement this using Hybrid::forEach. Along the way this also fixes the bug that operator<< ignores the passed stream and uses std::cout instead.
-
Carsten Gräser authored
The implementation in MultiTypeBlockMatrix would be even simpler, if it would provide a static size() method, because we could then use a simple Hybrid::forEach over its entries instead of one over all indices.
-