3 #ifndef DUNE_RANNACHER_TUREK_LOCALINTERPOLATION_HH
4 #define DUNE_RANNACHER_TUREK_LOCALINTERPOLATION_HH
9 #include <dune/common/fvector.hh>
11 #include <dune/geometry/referenceelements.hh>
26 template<
class D,
class R,
unsigned int d >
30 R, 1, FieldVector< R, 1 >,
31 FieldMatrix< R, 1, d > >
Traits;
34 template<
class F,
class C >
39 auto&& f = Impl::makeFunctionWithCallOperator<DomainType>(ff);
42 auto referenceElement = ReferenceElements< D, d >::cube();
45 assert( size == referenceElement.size( 1 ) );
51 for(
int i = 0; i < size; ++i )
53 const DomainType &x = referenceElement.position( i, 1 );
Definition: bdfmcube.hh:16
Type traits for LocalBasisVirtualInterface.
Definition: common/localbasis.hh:32
D DomainType
domain type
Definition: common/localbasis.hh:43
please doc me
Definition: rannachertureklocalinterpolation.hh:28
void interpolate(const F &ff, std::vector< C > &out) const
Definition: rannachertureklocalinterpolation.hh:35