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>
25 template<
class D,
class R,
unsigned int d >
29 R, 1, FieldVector< R, 1 >,
30 FieldMatrix< R, 1, d > >
Traits;
33 template<
class F,
class C >
40 const ReferenceElement< D, d > &referenceElement = ReferenceElements< D, d >::cube();
43 assert( size == referenceElement.size( 1 ) );
49 for(
int i = 0; i < size; ++i )
51 const DomainType &x = referenceElement.position( i, 1 );
Definition brezzidouglasmarini1cube2d.hh:14
Type traits for LocalBasisVirtualInterface.
Definition localbasis.hh:38
R RangeType
range type
Definition localbasis.hh:61
D DomainType
domain type
Definition localbasis.hh:49
please doc me
Definition rannachertureklocalinterpolation.hh:27
void interpolate(const F &f, std::vector< C > &out) const
Definition rannachertureklocalinterpolation.hh:34