| 1015 | } |
| 1016 | |
| 1017 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 1018 | shared_ptr<CoefficientFunction> dir) const override |
| 1019 | { |
| 1020 | if (this == var) return dir; |
| 1021 | return SymmetricCF(c1->Diff(var, dir)); |
| 1022 | } |
| 1023 | |
| 1024 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
| 1025 | { |
nothing calls this directly
no test coverage detected