| 190 | } |
| 191 | |
| 192 | shared_ptr<CoefficientFunction> CoefficientFunction :: Transpose () const |
| 193 | { |
| 194 | auto sp = const_cast<CoefficientFunction*>(this)->shared_from_this(); |
| 195 | return TransposeCF (sp); |
| 196 | } |
| 197 | |
| 198 | shared_ptr<CoefficientFunction> CoefficientFunction :: TensorTranspose (int i, int j) const |
| 199 | { |
nothing calls this directly
no test coverage detected