| 3822 | |
| 3823 | template <> |
| 3824 | shared_ptr<CoefficientFunction> |
| 3825 | cl_BinaryOpCF<GenericPlus>::Diff(const CoefficientFunction * var, |
| 3826 | shared_ptr<CoefficientFunction> dir) const |
| 3827 | { |
| 3828 | if (var == this) return dir; |
| 3829 | return c1->Diff(var,dir) + c2->Diff(var,dir); |
| 3830 | } |
| 3831 | |
| 3832 | template <> |
| 3833 | shared_ptr<CoefficientFunction> |
no test coverage detected