| 3847 | |
| 3848 | template <> |
| 3849 | shared_ptr<CoefficientFunction> |
| 3850 | cl_BinaryOpCF<GenericPlus>::Operator(const string & name) const |
| 3851 | { |
| 3852 | return c1->Operator(name) + c2->Operator(name); |
| 3853 | } |
| 3854 | |
| 3855 | shared_ptr<CoefficientFunction> operator+ (shared_ptr<CoefficientFunction> c1, shared_ptr<CoefficientFunction> c2) |
| 3856 | { |