1 #ifndef DUNE_RANNACHER_TUREK2DLOCALINTERPOLATION_HH
2 #define DUNE_RANNACHER_TUREK2DLOCALINTERPOLATION_HH
15 template<
typename F,
typename C>
17 typename LB::Traits::DomainType x;
18 typename LB::Traits::RangeType y;
21 x[0] = 0.0; x[1] = 0.5; f.evaluate(x,y); out[0] = y;
22 x[0] = 1.0; x[1] = 0.5; f.evaluate(x,y); out[1] = y;
23 x[0] = 0.5; x[1] = 0.0; f.evaluate(x,y); out[2] = y;
24 x[0] = 0.5; x[1] = 1.0; f.evaluate(x,y); out[3] = y;
30 #endif // DUNE_RANNACHER_TUREK2DLOCALINTERPOLATION_HH