- Apr 01, 2016
-
-
Steffen Müthing authored
-
Steffen Müthing authored
std::index_sequence_for has been made for this very situation...
-
Steffen Müthing authored
Most of the time we can rely on std::integer_sequence et. al. being available, as GCC 4.9+ runs in C++14 mode, so the new version tries to import the functionality from the standard library. If it is not available, we now use a fully compliant implementation (i.e. index_sequence is now an alias template of integer_sequence, and the various construction helpers are now also alias templates instead of functions).
-
Steffen Müthing authored
We can now be sure that we have std::declval() available, so remove our local alias.
-
- Mar 30, 2016
-
-
- Mar 23, 2016
-
-
Christoph Grüninger authored
-
Christoph Grüninger authored
* Required CMake version 2.8.12 instead of 2.8.6 * Add compiler variables for Fortran * Some typos
-
- Mar 22, 2016
-
-
Christoph Grüninger authored
[CMake] Check for SuiteSparse >= 4.3 for using SPQR Fixes dune-istl#5 See merge request !78
-
Fixes dune-istl/#5
-
- Mar 21, 2016
-
-
Dominic Kempf authored
[cmake] Avoid unnecessary rebuilds without fortran When CMake doesn't detect Fortran, it writes an empty `FC.h` file, which gets included by `config.h`. This file is regenerated on each cmake run, causing continuous full rebuilds. This merge requests fixes the issue by not rewriting the file if is already present. See merge request !66
-
Christoph Grüninger authored
[cleanup] fix some typos in documentation strings I still had some old commits lying around that fixed some typos in comments. Since then I found the codespell program which turned out to be quite helpful in finding common misspellings. So I guess, I've gathered enough fixes by now to justify a merge request.
Similar merge requests for the rest of the Dune core modules will follow soon. See merge request !79 -
-
Felix Gruber authored
-
- Mar 17, 2016
-
- Mar 16, 2016
-
-
Carsten Gräser authored
This avoid duplicate definitions of the function.
-
Carsten Gräser authored
These are helpfull when working with multitype containers, e.g., for checking if a container or index is dynamic or static.
-
- Mar 12, 2016
-
- Mar 09, 2016
-
-
Jö Fahlke authored
[doc][buildsystem] Make code-block actually appear in sphinx-generated html. I was using this code-block as a template for !71 and could not get my code block to appear... See merge request !72
-
Jö Fahlke authored
-
Jö Fahlke authored
-
Jö Fahlke authored
-
Jö Fahlke authored
Document that tests need to be build before running them and how to do that See merge request !70
-
Jö Fahlke authored
running them.
-
Christoph Grüninger authored
-
On FreeBSD, e.g., bash is installed to /usr/local
-
- Mar 08, 2016
-
-
Christoph Grüninger authored
[CMake,cleanup] Remove FindFiles.cmake needed for the testing magic As the testing magic is gone, this file is no longer needed See merge request !67
-
Christoph Grüninger authored
As the testing magic is gone, this file is no longer needed
-
Jö Fahlke authored
-
- Mar 07, 2016
-
-
Jö Fahlke authored
- Mar 04, 2016
-
-
Carsten Gräser authored
This fixes the failing concept test for me.
-
Dominic Kempf authored
[cmake][bugfix] Fix issues with DUNE_BUILD_TESTS_ON_MAKE_ALL Interplay with EXPECT_COMPILE_FAIL: Compile failure should be during testing, not during building, so we need to *alawys* ignore EXPECT_COMPILE_FAIL-tests during `make all` This fixes #21. See merge request !53
-
- Mar 03, 2016
-
-
Carsten Gräser authored
The old version did not work for tuples with more than two entries because recursive function templates don't work this way. Now we simply use a TMP reduce on the tuple. This also fixes the problem that composite bases in dune-functions with more than two factors did not compile due to a failing concept check caused by this issue.
-
- Mar 01, 2016
-
-
Steffen Müthing authored
We generate an empty FC.h file if Fortran wasn't found. Unfortunately, that file gets regenerated on every cmake run. As it is included by config.h, every cmake run will trigger a full rebuild of all sources. Fixed by checking whether the file is present before writing it.
-
Steffen Müthing authored
It's already written by the global Dune macros, so no need to do it again in the dune-common specific code.
-
Christoph Grüninger authored
-
-
-