Skip to content
Snippets Groups Projects
Commit bf8c9917 authored by Sander, Oliver's avatar Sander, Oliver
Browse files

Set correct DerivativeType if the TargetSpace is a RealTuple

parent bde7e198
No related branches found
No related tags found
No related merge requests found
......@@ -14,6 +14,12 @@ struct DerivativeTypefier<Dune::FieldVector<dctype, DimDomain>, UnitVector<rctyp
typedef Dune::FieldMatrix<rctype, DimRange, DimDomain> DerivativeType;
};
template <class dctype, int DimDomain, class rctype, int DimRange>
struct DerivativeTypefier<Dune::FieldVector<dctype, DimDomain>, RealTuple<rctype,DimRange> >
{
typedef Dune::FieldMatrix<rctype, DimRange, DimDomain> DerivativeType;
};
/** \brief Global geodesic finite element function.
......
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