| 196 | } |
| 197 | |
| 198 | shared_ptr<CoefficientFunction> CoefficientFunction :: TensorTranspose (int i, int j) const |
| 199 | { |
| 200 | auto sp = const_cast<CoefficientFunction*>(this)->shared_from_this(); |
| 201 | return MakeTensorTransposeCoefficientFunction (sp, i, j); |
| 202 | } |
| 203 | |
| 204 | shared_ptr<CoefficientFunction> |
| 205 | CoefficientFunction :: Transform (CoefficientFunction::T_Transform & transformation) const |
nothing calls this directly
no test coverage detected