| 3157 | } |
| 3158 | |
| 3159 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 3160 | shared_ptr<CoefficientFunction> dir) const override |
| 3161 | { |
| 3162 | if (var == this) return dir; |
| 3163 | return make_shared<ConstantCoefficientFunction>(1.0)/NormCF(c1) * InnerProduct(c1,c1->Diff(var,dir)); |
| 3164 | } |
| 3165 | |
| 3166 | |
| 3167 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
nothing calls this directly
no test coverage detected