| 3365 | // virtual Array<int> Dimensions() const { return Array<int> (dims); } |
| 3366 | |
| 3367 | virtual void TraverseTree (const function<void(CoefficientFunction&)> & func) override |
| 3368 | { |
| 3369 | c1->TraverseTree (func); |
| 3370 | c2->TraverseTree (func); |
| 3371 | func(*this); |
| 3372 | } |
| 3373 | |
| 3374 | shared_ptr<CoefficientFunction> Transform |
| 3375 | (CoefficientFunction::T_Transform& transformation) const override |
nothing calls this directly
no test coverage detected