| 3623 | { return "cross-product"; } |
| 3624 | |
| 3625 | virtual void TraverseTree (const function<void(CoefficientFunction&)> & func) override |
| 3626 | { |
| 3627 | c1->TraverseTree (func); |
| 3628 | c2->TraverseTree (func); |
| 3629 | func(*this); |
| 3630 | } |
| 3631 | |
| 3632 | virtual Array<shared_ptr<CoefficientFunction>> InputCoefficientFunctions() const override |
| 3633 | { return Array<shared_ptr<CoefficientFunction>>({ c1, c2 }); } |
nothing calls this directly
no test coverage detected