- Aug 25, 2017
-
-
Robert Kloefkorn authored
-
- Aug 03, 2017
-
-
Steffen Müthing authored
dunecontrol: .git does not have to be a directory See merge request !289
-
Ansgar Burchardt authored
`.git` can be a regular file when using git-worktree. This change makes `dunecontrol status` work for me again.
-
- Aug 02, 2017
-
-
Ansgar Burchardt authored
.gitlab-ci.yml: update environments See merge request !288
-
Ansgar Burchardt authored
- Added: Debian 10 with gcc in C++17 mode - Removed: Debian 8 + Backports with clang Reference: http://lists.dune-project.org/pipermail/dune-devel/2017-July/002224.html
-
- Jul 26, 2017
-
-
Markus Blatt authored
include <cstddef> See merge request !286
-
- Jul 25, 2017
-
-
Martin Nolte authored
Rationale: The macro `offsetof` is officially defined in <cstddef>.
-
- Jul 23, 2017
-
-
Ansgar Burchardt authored
resolve ambiguous call by explicitly calling `Dune::Hybrid::size` Closes #77 See merge request !283
-
- Jul 21, 2017
-
-
Ansgar Burchardt authored
Closes: #77
-
- Jul 15, 2017
-
-
Markus Blatt authored
[bugfix] multiply by field_type instead of value_type See merge request !274
-
Markus Blatt authored
Update dunecontrol doc See merge request !271
-
- Jul 11, 2017
-
-
Martin Nolte authored
The proper vector space operation is multiplication by a scalar, not by a vector component.
-
- Jul 10, 2017
-
-
Oliver Sander authored
-
Oliver Sander authored
It has been removed several years ago.
-
- Jul 08, 2017
-
-
Christian Engwer authored
Clean up `#include`s and `#if HAVE_MPI` in mostly `dune/common/parallel/` See merge request !244
-
Christian Engwer authored
Feature/add exadune tbbtest See merge request !253
-
- Jul 07, 2017
-
-
Martin Nolte authored
Added missing FieldTraits specialization for DiagonalMatrix See merge request !269
-
- Jul 06, 2017
-
-
Martin Nolte authored
[bugfix] adapt web link in dunecontrol man page to new homepage See merge request !270
-
Martin Nolte authored
-
- Jul 05, 2017
-
-
Andreas Dedner authored
-
- Jul 04, 2017
-
-
Markus Blatt authored
Add MPI_NO_CPPBIND to compile flags to deactivate C++ with MPT See merge request !267
-
Markus Blatt authored
-
- Jun 30, 2017
-
-
Christian Engwer authored
[fix] deduce the VC return type instead of hardwireing them See merge request !264
-
Christian Engwer authored
-
- Jun 26, 2017
-
-
Dominic Kempf authored
[cmake][python] Check that the get-pip.py script was successfully fetched See merge request !254
-
Ansgar Burchardt authored
doxygen: enable SEARCHENGINE See merge request !262
-
Ansgar Burchardt authored
The JS-based search engine is enabled for the doxygen documentation on the web site. This change also enables it by default for local builds of documentation.
-
- Jun 21, 2017
-
-
Ansgar Burchardt authored
CollectiveCommunication: use `const` references or pointers where possible See merge request !261
-
Ansgar Burchardt authored
CMakeLists.txt: run MPI tests in parallel See merge request !260
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
In older MPI versions the send or input buffer was a `void*`. This was changed to a `const void*` in newer versions. DUNE's `CollectiveCommunication` should not expose the missing `const`, but instead just cast the `const` away internally to be compatible with the old MPI interface.
-
Ansgar Burchardt authored
This change makes the test suite run the MPI tests in parallel. The change also runs the `mpicollectivecommunication` test when building without MPI as the `CollectiveCommunication` wrapper should also work in a sequential build.
-
- Jun 17, 2017
-
-
Martin Nolte authored
Remove (index|integer)_sequence fallback to fix #73 in master Closes #73 See merge request !256
-
- Jun 12, 2017
- Jun 08, 2017
-
-
Ansgar Burchardt authored
make `TestSuite::operator bool()` explicit See merge request !255
-
Ansgar Burchardt authored
Implicit conversion to `bool` allows using `TestSuite` in arithmetic expressions such as `1.0 / t` where `t` is an instance of `TestSuite`. With an explicit conversion operator, one gets a compiler error when using the wrong variable here.
-
Elias Pipping authored
All supported compiler/standard library combinations have it (so that this change does no harm) Libc++, however, does not declare __cpp_lib_integer_sequence, causing the fail to check and the fallback to be used. This leads to problems because code is already freely mixing Dune::Std::*_sequence and std::* expecting them to be the same, which with Libc++ they are not.
-
- Jun 03, 2017
-
-
Christoph Grüninger authored
Fix type of returned references and thus #68. Closes #68 See merge request !245
-