Call operator.
| 245 | |
| 246 | // Call operator. |
| 247 | ScalarType operator()(const VectorType& x, VectorType* grad = nullptr, |
| 248 | MatrixType* hess = nullptr) const { |
| 249 | return (*ptr)(x, grad, hess); |
| 250 | } |
| 251 | |
| 252 | // Exposes the stored interface for mode-downgrading converting |
| 253 | // construction into a weaker-mode `FunctionExpr`. Returns a |
nothing calls this directly
no outgoing calls
no test coverage detected