| 45 | |
| 46 | |
| 47 | template <> shared_ptr<CoefficientFunction> |
| 48 | cl_UnaryOpCF<GenericSqrt>::Diff(const CoefficientFunction * var, |
| 49 | shared_ptr<CoefficientFunction> dir) const |
| 50 | { |
| 51 | if (this == var) return dir; |
| 52 | return CWMult (0.5/sqrt(c1), c1->Diff(var, dir)); |
| 53 | } |
| 54 | |
| 55 | template <> shared_ptr<CoefficientFunction> |
| 56 | cl_UnaryOpCF<GenericSqrt>::DiffJacobi(const CoefficientFunction * var, T_DJC & cache) const |
nothing calls this directly
no test coverage detected