- Feb 16, 2016
-
-
Steffen Müthing authored
FindSuiteSparse.cmake: Correct `HAVE_SUITESPARSE_${_component}` See merge request !47
-
Ansgar Burchardt authored
The value of the variable `SuiteSparse_${_component}_FOUND` should be assigned, not the name of the variable.
-
Ansgar Burchardt authored
The construct `set(variable (x and y))` will assign the list `"x;and;y"` to `variable` instead of evaluating the expression.
-
Carsten Gräser authored
Thanks to Elias Pipping for pointing this out.
-
- Feb 15, 2016
-
-
Christoph Grüninger authored
[cleanup] replace last usage of Dune::Conversion The deprecated type trait Dune::Conversion was still used in dune/common/densematrix.hh and will be replaced by std::is_convertible in this merge request. This is a follow-up to merge request !37. See merge request !45
-
Felix Gruber authored
This is a follow-up to merge request !37.
-
- Feb 14, 2016
-
-
Christoph Grüninger authored
-
Elias Pipping authored
See also flyspray/FS#1669
-
Elias Pipping authored
A FieldMatrix can still have a DiagonalMatrix assigned to it through the new DenseMatrixAssigner specialisation. The restriction from general DenseMatrix implementations to the FieldMatrix class is removed in the process.
-
Elias Pipping authored
The functionality is retained in the form of a DenseMatrixAssigner specialisation, except for C-style matrices. See also flyspray/FS#1669 and #11
-
Steffen Müthing authored
The point of the matter is that posix_memalign() is not allowed in this context according to the relevant standards, so we use mmap() instad. `mprotect` can only be used for `mmap`'ed memory Makes testdebugallocator pass on OS X, too. See merge request !43
-
- Feb 12, 2016
-
-
Oliver Sander authored
-
- Feb 11, 2016
-
-
Elias Pipping authored
-
- Feb 10, 2016
-
-
Elias Pipping authored
mprotect violations are required to lead to a SIGSEGV on Linux. OS X is more permissive, allowing for both SIGSEGV and SIGBUS. And practice, the tests generate a SIGBUS for me, causing the tests to fail. Confusingly, ctest describes the problem as Exception: SegFault which I assume they use as a catch-all term.
-
Elias Pipping authored
-
Elias Pipping authored
The combination of `posix_memalign` and `mprotect` does not work as expected on OS X, see also !43.
-
- Feb 09, 2016
-
-
Steffen Müthing authored
[Cleanup] Fix GCC warning by properly initializing member See merge request !41
-
- Feb 08, 2016
-
-
René Heß authored
-
- Feb 07, 2016
-
-
Christoph Grüninger authored
feature/ use std::is_convertible istead of Dune::Conversion See merge request !37
-
Christoph Grüninger authored
-
Marco Agnese authored
-
Marco Agnese authored
-
Marco Agnese authored
-
- Feb 06, 2016
-
-
Christoph Grüninger authored
Feature/debugstream destructor exception See merge request !35
-
Christoph Grüninger authored
-
Christoph Grüninger authored
C++11 defaults destructors to noexcept. Good catch, GCC 6!
-
- Feb 05, 2016
-
-
Steffen Müthing authored
[CMake] Get rid of deprecated check_cxx_accepts_flag() The CMake module TestCXXAcceptsFlag and the accompanying function check_cxx_accepts_flag() have been deprecated since CMake 3.0, the replacements are CheckCXXCompilerFlag and check_cxx_compiler_flag(). Thanks to Dirk Ribbrock for reporting the problem via email. See merge request !39
-
- Feb 04, 2016
-
-
Steffen Müthing authored
The CMake module TestCXXAcceptsFlag and the accompanying function check_cxx_accepts_flag() have been deprecated since CMake 3.0, the replacements are CheckCXXCompilerFlag and check_cxx_compiler_flag(). Thanks to Dirk Ribbrock for reporting the problem via email.
-
- Feb 02, 2016
-
-
Christian Engwer authored
BitSetVector: Add and test bounds checking See also Flyspray/FS#1030. See merge request !34
-
Elias Pipping authored
-
Christoph Grüninger authored
Fix warnings This addresses warnings about unitialised base classes and superfluous use of the keyword `const`. See merge request !38
-
- Feb 01, 2016
-
-
Elias Pipping authored
-
Oliver Sander authored
fmatrixtest: Use initializer lists The old implementation was a kludge that wanted to use initializer lists badly, obviously, but couldn't. Now we can. Cleanup only, no functional changes. See merge request !36
-
Elias Pipping authored
-
Elias Pipping authored
This addresses warnings such as 'const' type qualifier on return type has no effect
-
- Jan 31, 2016
-
-
Christoph Grüninger authored
-
- Jan 30, 2016
-
-
Oliver Sander authored
Use <array> instead of <dune/common/array> See also core/dune-common#13. See merge request !33
-
Elias Pipping authored
-
- Jan 29, 2016
-
-
Christoph Grüninger authored
[cmake] install boundschecking.hh Merge request !17 added a new header file boundschecking.hh but forgot to add it to the list of installed headers in CMakeLists.txt. See merge request !32
-
Felix Gruber authored
-