| 200 | |
| 201 | |
| 202 | void DifferentialOperator :: |
| 203 | ApplyTrans (const FiniteElement & fel, |
| 204 | const BaseMappedIntegrationPoint & mip, |
| 205 | FlatVector<double> flux, |
| 206 | BareSliceVector<double> x, |
| 207 | LocalHeap & lh) const |
| 208 | { |
| 209 | #ifndef FASTCOMPILE |
| 210 | static int cnt = 0; |
| 211 | if (cnt < 3) |
| 212 | { |
| 213 | cnt++; |
| 214 | cout << "called base class apply trans, type = " << typeid(*this).name() << endl; |
| 215 | } |
| 216 | #endif |
| 217 | HeapReset hr(lh); |
| 218 | FlatMatrix<double,ColMajor> mat(Dim(), fel.GetNDof(), lh); |
| 219 | CalcMatrix (fel, mip, mat, lh); |
| 220 | x.Range(0,fel.GetNDof()) = Trans(mat) * flux; |
| 221 | } |
| 222 | |
| 223 | |
| 224 | void DifferentialOperator :: |
nothing calls this directly
no test coverage detected