| 104 | |
| 105 | template <class FEL, ELEMENT_TYPE ET> |
| 106 | void T_HDivFiniteElement<FEL,ET> :: |
| 107 | CalcDivShape (const IntegrationPoint & ip, |
| 108 | BareSliceVector<> divshape) const |
| 109 | { |
| 110 | static_cast<const FEL*> (this) -> |
| 111 | T_CalcShape (GetTIPGrad<DIM>(ip), |
| 112 | SBLambda( [divshape] (size_t nr, THDiv2DivShape<DIM> val) LAMBDA_INLINE |
| 113 | { |
| 114 | divshape(nr) = val; |
| 115 | })); |
| 116 | } |
| 117 | |
| 118 | #ifndef FASTCOMPILE |
| 119 |
nothing calls this directly
no test coverage detected