| 5701 | } |
| 5702 | |
| 5703 | shared_ptr<CoefficientFunction> Operator (const string & name) const override |
| 5704 | { |
| 5705 | Array<shared_ptr<CoefficientFunction>> cfop; |
| 5706 | |
| 5707 | for (auto & cf : ci) |
| 5708 | if (cf) |
| 5709 | cfop.Append (cf->Operator(name)); |
| 5710 | else |
| 5711 | cfop.Append (nullptr); |
| 5712 | return MakeDomainWiseCoefficientFunction(std::move (cfop), vb); |
| 5713 | } |
| 5714 | |
| 5715 | shared_ptr<CoefficientFunction> Diff (const CoefficientFunction * var, |
| 5716 | shared_ptr<CoefficientFunction> dir) const override |
nothing calls this directly
no test coverage detected