| 4764 | } |
| 4765 | |
| 4766 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 4767 | shared_ptr<CoefficientFunction> dir) const override |
| 4768 | { |
| 4769 | if (this == var) return dir; |
| 4770 | return MakeSubTensorCoefficientFunction (c1->Diff(var, dir), first, Array<int> (num), Array<int> (dist)); |
| 4771 | } |
| 4772 | |
| 4773 | |
| 4774 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
nothing calls this directly
no test coverage detected