| 286 | return MakeStdMathFunction<GenericSin>(x); |
| 287 | } |
| 288 | shared_ptr<CoefficientFunction> cos(shared_ptr<CoefficientFunction> x) |
| 289 | { |
| 290 | return MakeStdMathFunction<GenericCos>(x); |
| 291 | } |
| 292 | shared_ptr<CoefficientFunction> tan(shared_ptr<CoefficientFunction> x) |
| 293 | { |
| 294 | return MakeStdMathFunction<GenericTan>(x); |
no outgoing calls