MCPcopy Create free account
hub / github.com/NGSolve/ngsolve / ApplyTrans

Method ApplyTrans

fem/bdbintegrator.hpp:113–120  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

111 /// apply transpose coefficient tensor
112 template <typename FEL, typename MIP, class TVX, class TVY>
113 void ApplyTrans (const FEL & fel, const MIP & mip,
114 const TVX & x, TVY & y,
115 LocalHeap & lh) const
116 {
117 Mat<DMO::DIM_DMAT, DMO::DIM_DMAT, double> mat;
118 static_cast<const DMO*>(this) -> GenerateMatrix (fel, mip, mat, lh);
119 y = Trans (mat) * x;
120 }
121
122 /// computes energy
123 template <typename FEL, typename MIP, class TVX>

Callers 6

ApplyBTransMethod · 0.45
T_ApplyElementMatrixMethod · 0.45
T_CalcElementVectorMethod · 0.45

Calls 2

TransFunction · 0.50
GenerateMatrixMethod · 0.45

Tested by

no test coverage detected