- Jun 19, 2023
-
-
Santiago Ospina De Los Ríos authored
The motivation of this change is to remove the dependency of config file between modules. Before this change, these cpp definitions where resolved in the downstream module consuming dune-common. With this change, the config file is fully resolvable locally and we can transition to a non dune specific build system.
-
- May 24, 2023
-
-
Robert K authored
interpreter when multiple python versions are installed.
- May 04, 2023
-
-
Andreas Dedner authored
Fix/package data folder generic See merge request !1254
-
-
- Apr 24, 2023
-
- Apr 22, 2023
-
-
Robert K authored
variable values might be overwritten by default values from dune-common.
-
- Apr 21, 2023
-
-
Andreas Dedner authored
-
Andreas Dedner authored
-
Andreas Dedner authored
-
- Apr 20, 2023
-
-
Andreas Dedner authored
make it possible to replace launcher in already configured dune-py by setting DUNE_CXX_COMPILER_LAUNCHER variable
-
Robert K authored
-
Andreas Dedner authored
User can still provide own launcher in CMake flags. change error to warning in cxx olverload cmake module move the example compiler launcher to the dune-py template folder where it is used as default launcher
-
- Apr 18, 2023
- Apr 15, 2023
-
-
Simon Praetorius authored
Remove ENABLE_TBB flag from TBB package See merge request !1206
-
- Apr 01, 2023
-
- Mar 31, 2023
-
-
Robert K authored
Now an environment variable or cmake variable with the name ALLOW_CXXFLAGS_OVERWRITE_VERBOSE has to be set to also get the output.
-
- Mar 28, 2023
-
-
Christoph Grüninger authored
Remove code that is no longer required See merge request !1241
-
Christoph Grüninger authored
This reverts commit 85d57815. Drop code that works around GCC crash. We no longer support such old GCC versions.
-
Christoph Grüninger authored
This reverts commit 528b5f36. Drop code to work around GCC crash. We no longer support such old versions of GCC
-
Christoph Grüninger authored
We no longer support such old versions of GCC
-
Christoph Grüninger authored
Result no longer used. (make_array is removed in Library Fundamentals TS v3.)
-
- Mar 27, 2023
-
-
Christoph Grüninger authored
[doc] Fix the license comment in build system RST See merge request !1244
-
Christoph Grüninger authored
In reStructuredText comments are started by "..", not "::"
-
Andreas Dedner authored
Collect meta-data flags when allow-flags-overwrite is enabled See merge request !1243
-
Andreas Dedner authored
-
Simon Praetorius authored
-
- Mar 26, 2023
-
-
Simon Praetorius authored
Simplify enforcement of required c++ standard in cmake Closes #307 and #217 See merge request !862
-
Simon Praetorius authored
-
-
- Mar 22, 2023
-
-
Oliver Sander authored
[bugfix] Make inequality comparisons of iterators const See merge request !1240
-
- Mar 21, 2023
-
-
Carsten Gräser authored
-
- Mar 07, 2023
-
-
Simon Praetorius authored
Link all tests against dunecommon
-
- Mar 06, 2023
-
-
Simon Praetorius authored
Deprecate the DUNE_ASSERT_AND_RETURN macro See merge request !1236
-
- Feb 28, 2023
-
-
Simon Praetorius authored
Improve specializations of Hybrid::size() See merge request !1209
-
The interfaces tested subsequently for `Hybrid::size(const T& t)` are now * standard tuple-like interface `std::tuple_size<T>::value` (e.g. needed for `std::tuple`), * static constexpr `T::size()` (e.g. needed for `Dune::TupleVector`), * dynamic member function `t.size()` (e.g. needed for `std::vector`). This patch removes a special case for `FieldVector` which is already covered by the `static constexpr size()` case. To ensure this, a corresponding test case was added. Also the documentation of the different cases was fixed. Notice that this does not work necessarily with matrices, because many of them only provide a (potentially `static constexpr`) method `N()` instead of `size()`.
-
Simon Praetorius authored
Add utility IsCompileTimeConstant and use it in HybridFunctor See merge request !1226
-
Simon Praetorius authored
-