(x, jacobian_values)
| 19 | 200.*(x[1] - x[0]**2)] |
| 20 | |
| 21 | def jacobian(x, jacobian_values): |
| 22 | # the modeler should throw an exception if the function cannot be evaluated |
| 23 | jacobian_values[:] = [x[1], 1., x[0], 2.*x[1]] |
| 24 | |
| 25 | def lagrangian_hessian(x, objective_multiplier, multipliers, hessian_values): |
| 26 | # the modeler should throw an exception if the function cannot be evaluated |
nothing calls this directly
no outgoing calls
no test coverage detected