----------------------------------------------------------------- Differentiability enum.
| 40 | //----------------------------------------------------------------- |
| 41 | // Differentiability enum. |
| 42 | enum class DifferentiabilityMode { |
| 43 | None = 0, // Only function evaluation. |
| 44 | First = 1, // Evaluation and gradient available. |
| 45 | Second = 2 // Evaluation, gradient, and Hessian available. |
| 46 | }; |
| 47 | |
| 48 | //----------------------------------------------------------------- |
| 49 | // Unified Function Interface templated on scalar type and differentiability. |
nothing calls this directly
no outgoing calls
no test coverage detected