- 22 Jan, 2023 2 commits
-
-
Simon Praetorius authored
Fix deprecated aligned_storage in PolymorphicSmallObject See merge request !381
-
Simon Praetorius authored
-
- 17 Jan, 2023 2 commits
-
-
Carsten Gräser authored
Simplify type when nesting ShiftedDynamicMultiIndex See merge request !395
-
Carsten Gräser authored
This adds an overload for `shiftedDynamicMultiIndex()` that ensures that shifting a multi-index twice will not produce a nested `ShiftedDynamicMultiIndex` but add the offsets. While the behaviour of the resulting multi-index is the same, the type is simplified which eases reading error messages and debug output, because you get `ShiftedDynamicMultiIndex<Index,3>` instead of `ShiftedDynamicMultiIndex<ShiftedDynamicMultiIndex<ShiftedDynamicMultiIndex<Index,1>, 1>, 1>`.
-
- 08 Jan, 2023 2 commits
-
-
Ansgar Burchardt authored
typo: TreeDate -> TreeData See merge request !394
-
Ansgar Burchardt authored
Thankfully we don't have to deal with calendar dates in DUNE.
-
- 04 Jan, 2023 2 commits
-
-
Oliver Sander authored
Install two additional headers See merge request !391
-
Oliver Sander authored
The headers globalvaluedlocalfiniteelement.hh and raviartthomasbasis.hh were not installed. This was apparently an oversight.
-
- 12 Dec, 2022 1 commit
-
-
Simon Praetorius authored
Remove updated toolchains from gitlab-ci See merge request !386
-
- 08 Dec, 2022 1 commit
-
-
Oliver Sander authored
Implement operator() for DiscreteGlobalBasisFunction See merge request !387
-
- 07 Dec, 2022 2 commits
-
-
Oliver Sander authored
This does a hierarchic search over the elements. It may hence be very slow.
-
Oliver Sander authored
-
- 25 Nov, 2022 1 commit
-
-
Christoph Grüninger authored
Adapt changelog after release See merge request !385
-
- 17 Nov, 2022 1 commit
-
-
Simon Praetorius authored
-
- 16 Nov, 2022 3 commits
-
-
Simon Praetorius authored
-
Simon Praetorius authored
-
Simon Praetorius authored
Update the list of authors See merge request !383
-
- 24 Oct, 2022 3 commits
-
-
Simon Praetorius authored
Update dune.module file after 2.9 release See merge request !382
-
Simon Praetorius authored
-
Simon Praetorius authored
-
- 20 Oct, 2022 1 commit
-
-
Simon Praetorius authored
[cmake][python] Replace deprecated dune_python_install_package See merge request !380
-
- 18 Oct, 2022 1 commit
-
-
Santiago Ospina De Los Ríos authored
-
- 06 Oct, 2022 3 commits
-
-
Ansgar Burchardt authored
Python: Add grid property to DiscreteFunction See merge request !377
-
Patrick Jaap authored
This is necessary for the current plot functionality in the dune-common Python bindings. A test extracting the grid is also added.
-
Ansgar Burchardt authored
.gitlab-ci.yml: add "duneci" tag to spellcheck See merge request !376
-
- 09 Sep, 2022 1 commit
-
-
Ansgar Burchardt authored
The shared runner might not pick up the job otherwise.
-
- 27 Jul, 2022 1 commit
-
-
Simon Praetorius authored
Add missing include / use std::invoke_result See merge request !372
-
- 23 Jul, 2022 2 commits
-
-
Christoph Grüninger authored
Clang master (futur 15) warns about it
-
Christoph Grüninger authored
Caused compilation error in DuMuX
-
- 11 Jul, 2022 1 commit
-
-
Oliver Sander authored
[CI] Run the 'codespell' tool See merge request !371
-
- 06 Jul, 2022 3 commits
-
-
Oliver Sander authored
-
Oliver Sander authored
-
Oliver Sander authored
This will warn about misspellings in the source code.
-
- 01 Jul, 2022 2 commits
-
-
Ansgar Burchardt authored
derivative of `DiscreteGlobalBasisFunction` See merge request !366
-
-
- 30 Jun, 2022 5 commits
-
-
The new namespace is dedicated to implemenation details that should not be generically ignore by doxygen, e.g. because the contained classes are mixins whole members should show up in the documentation of the derived class.
-
This mixin base class does not do anything with this member. Hence it's easier to not pass it as template parameter, but directly store it in the derived class.
-
* Unify algorithm for mapping shape function range and coefficient to the function range. Effectively the new implementation produuces the same results but is much easier to understand and describe. * Move `DiscreteGlobalBasisFunctionBase` to implementation name space. * Factor out access to nodeToRangeMap` and assignment of different container types. * Uniformly initialize all vectors/coefficients with `istlVectorBackend(c)=0;` * Don't use `operator+=` when we actually assign a zero-initialized value. * Swap loop order. Having the statically sized loop inside it is more likely to be unrolled.
-
Ansgar Burchardt authored
-
Ansgar Burchardt authored
-