| 2867 | } |
| 2868 | |
| 2869 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 2870 | shared_ptr<CoefficientFunction> dir) const override |
| 2871 | { |
| 2872 | if (this == var) return dir; |
| 2873 | return 2*InnerProduct(c1->Diff(var,dir),c1); |
| 2874 | } |
| 2875 | |
| 2876 | |
| 2877 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
nothing calls this directly
no test coverage detected