Skip to content
Snippets Groups Projects
Commit 32e3ff60 authored by Carsten Gräser's avatar Carsten Gräser
Browse files

Merge branch 'bugfix/implement-multitypeblockmatrix-fieldtraits' into 'master'

[bugfix] Add missing specialization FieldTraits<MultiTypeBlockMatrix>

See merge request core/dune-istl!516
parents fc25dbfb fe3dccab
No related branches found
No related tags found
1 merge request!516[bugfix] Add missing specialization FieldTraits<MultiTypeBlockMatrix>
Pipeline #59704 passed
......@@ -404,6 +404,18 @@ namespace Dune {
};
/** @addtogroup DenseMatVec
@{
*/
template <typename... Rows>
struct FieldTraits< MultiTypeBlockMatrix<Rows...> >
{
using field_type = typename MultiTypeBlockMatrix<Rows...>::field_type;
using real_type = typename FieldTraits<field_type>::real_type;
};
/**
@brief << operator for a MultiTypeBlockMatrix
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment