5 #ifndef DUNE_RANNACHER_TUREK_LOCALINTERPOLATION_HH
6 #define DUNE_RANNACHER_TUREK_LOCALINTERPOLATION_HH
11 #include <dune/common/fvector.hh>
13 #include <dune/geometry/referenceelements.hh>
28 template<
class D,
class R,
unsigned int d >
32 R, 1, FieldVector< R, 1 >,
33 FieldMatrix< R, 1, d > >
Traits;
36 template<
class F,
class C >
41 auto&& f = Impl::makeFunctionWithCallOperator<DomainType>(ff);
44 auto referenceElement = ReferenceElements< D, d >::cube();
47 assert( size == referenceElement.size( 1 ) );
53 for(
int i = 0; i < size; ++i )
55 const DomainType &x = referenceElement.position( i, 1 );
Definition: bdfmcube.hh:18
Type traits for LocalBasisVirtualInterface.
Definition: common/localbasis.hh:34
D DomainType
domain type
Definition: common/localbasis.hh:42
please doc me
Definition: rannachertureklocalinterpolation.hh:30
void interpolate(const F &ff, std::vector< C > &out) const
Definition: rannachertureklocalinterpolation.hh:37