- Nov 06, 2020
-
-
Simon Praetorius authored
-
- Nov 05, 2020
-
-
Christian Engwer authored
Add wrapper representing the transposed of a matrix See merge request core/dune-common!889
-
- Nov 04, 2020
-
-
Carsten Gräser authored
-
Carsten Gräser authored
Currently the wrapper only implements ```cpp auto c = a*transpose(b); ``` if `a` is a `FieldMatrix* of appropriate size. This is optimal even for sparse `b` because it only relies on calling `b.mv(a[i], c[i])` for the rows of `a`. More functionality may be added later on. Since the created object only stores a reference to the wrapped matrix, it cannot be modified and should not be stored but used directly. The classical application is doing a local-to-global transformation of the Jacobians of a local finite element. ```cpp auto jacobian = referenceJacobian * transpose(geometry.inverseJacobianTransposed(xLocal)); ```
-
- Oct 31, 2020
-
-
Christoph Grüninger authored
Feature/cmake with link interface See merge request core/dune-common!875
-
Christoph Grüninger authored
-
Christoph Grüninger authored
-
Christoph Grüninger authored
-
If no link keyword like PUBLIC or INTERFACE is given, add PUBLIC to not break CMP0023.
-
- Oct 30, 2020
-
-
Christian Engwer authored
Fix mpi gather scatter See merge request core/dune-common!885
-
- Oct 29, 2020
-
-
Christoph Grüninger authored
[cmake] Deprecate dune_list_filter See merge request core/dune-common!882
-
Christoph Grüninger authored
We require CMake 3.13.
-
- Oct 28, 2020
-
-
Nils-Arne Dreier authored
-
Nils-Arne Dreier authored
-
- Oct 24, 2020
-
-
Simon Praetorius authored
link ParMETIS against METIS See merge request core/dune-common!884
-
Simon Praetorius authored
-
- Oct 23, 2020
-
-
Simon Praetorius authored
Remove workaround for threading library bug in old gcc See merge request core/dune-common!865
-
Simon Praetorius authored
fix flags for MPI and ParMETIS See merge request core/dune-common!881
-
Simon Praetorius authored
-
- Oct 22, 2020
-
-
Simon Praetorius authored
correct parametis test See merge request core/dune-common!880
-
Simon Praetorius authored
-
- Oct 19, 2020
-
-
Simon Praetorius authored
Rewrite FindParMETIS to provide imported targets See merge request core/dune-common!822
-
Simon Praetorius authored
Test for ParMETIS added Move HAVE_PARMETIS and dune_register_package_flags to AddParMETISFlags Add ENABLE_PTSCOTCH_PARMETIS for enabling ptscotch replacement for ParMETIS
-
Robert K authored
Replace #pragma once with real header guard to when generating code. See merge request core/dune-common!878
-
Robert K authored
avoid warnings.
-
- Oct 16, 2020
-
-
Christoph Grüninger authored
[bugfix][inkscape] fix command line parameters for inkscape_generate_png_from_svg. See merge request core/dune-common!876
-
- Oct 15, 2020
-
-
Robert Kloefkorn authored
[bugfix][inkscape] fix command line parameters for inkscape_generate_png_from_svg when inkscape version is 1.0 or newer.
-
Robert K authored
Feature: python compile output See merge request core/dune-common!877
-
Robert K authored
-
Robert K authored
output to stdout and stderr.
-
- Oct 11, 2020
-
-
Simon Praetorius authored
replace target_compile_definitions by set_property for UNKNOWN IMPORTED target... See merge request core/dune-common!874
-
Simon Praetorius authored
-
Simon Praetorius authored
replace target_compile_definitions by set_property for UNKNOWN IMPORTED target due to a bug in cmake < 3.16
-
Simon Praetorius authored
-
Simon Praetorius authored
link threading libraries always Prefer -pthread flag globally set THREADS_PREFER_PTHREAD_FLAG=TRUE
-
Simon Praetorius authored
Reduce output message of dune_instance macros Closes #213 See merge request core/dune-common!859
-
Simon Praetorius authored
-
Simon Praetorius authored
added explicit cast to underlying type of attributes See merge request core/dune-common!698
-
- Oct 09, 2020
-
-
Christian Engwer authored
Make non-MPI version of Communication more compliant with MPI See merge request core/dune-common!872
-
- Oct 08, 2020
-
-
Markus Blatt authored
-