| 5095 | } |
| 5096 | |
| 5097 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 5098 | shared_ptr<CoefficientFunction> dir) const override |
| 5099 | { |
| 5100 | if (this == var) return dir; |
| 5101 | return MakeExtendDimensionCoefficientFunction (c1->Diff(var, dir), Array<int> (dims), Array<int> (pos), |
| 5102 | Array<int>(stride)); |
| 5103 | } |
| 5104 | |
| 5105 | shared_ptr<CoefficientFunction> DiffJacobi (const CoefficientFunction * var, T_DJC & cache) const override |
| 5106 | { |
nothing calls this directly
no test coverage detected