1 #ifndef DUNE_Q22DLOCALINTERPOLATION_HH
2 #define DUNE_Q22DLOCALINTERPOLATION_HH
4 #warning This file is deprecated and will be removed after Dune 2.2. \
5 Please use q2localinterpolation.hh instead!
17 template<
typename F,
typename C>
20 typename LB::Traits::DomainType x;
21 typename LB::Traits::RangeType y;
24 x[0] = 0.0; x[1] = 0.0; f.evaluate(x,y); out[0] = y;
25 x[0] = 1.0; x[1] = 0.0; f.evaluate(x,y); out[1] = y;
26 x[0] = 0.0; x[1] = 1.0; f.evaluate(x,y); out[2] = y;
27 x[0] = 1.0; x[1] = 1.0; f.evaluate(x,y); out[3] = y;
28 x[0] = 0.0; x[1] = 0.5; f.evaluate(x,y); out[4] = y;
29 x[0] = 1.0; x[1] = 0.5; f.evaluate(x,y); out[5] = y;
30 x[0] = 0.5; x[1] = 0.0; f.evaluate(x,y); out[6] = y;
31 x[0] = 0.5; x[1] = 1.0; f.evaluate(x,y); out[7] = y;
32 x[0] = 0.5; x[1] = 0.5; f.evaluate(x,y); out[8] = y;