| 2459 | } |
| 2460 | |
| 2461 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 2462 | shared_ptr<CoefficientFunction> dir) const override |
| 2463 | { |
| 2464 | if (this == var) return dir; |
| 2465 | return InnerProduct(c1->Diff(var,dir),c2) + InnerProduct(c1,c2->Diff(var,dir)); |
| 2466 | } |
| 2467 | |
| 2468 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
| 2469 | { |
nothing calls this directly
no test coverage detected