ParametricNLPModels.hess_param_coord!Function
hess_param_coord!(nlp, x, y, vals; obj_weight = 1)

Evaluate $∇ₓₚL(x, y, p)$, the mixed block of the Lagrangian Hessian, at (x, y) in sparse coordinate format in place.

source
ParametricNLPModels.hpprod!Function
hpprod!(nlp, x, y, v, Hv; obj_weight = 1)

Evaluate $∇ₓₚL(x, y, p)v$, the mixed-Hessian-vector product, at (x, y) in place.

source
ParametricNLPModels.hptprod!Function
hptprod!(nlp, x, y, v, Htv; obj_weight = 1)

Evaluate $∇ₓₚL(x, y, p)ᵀv$, the transposed-mixed-Hessian-vector product, at (x, y) in place.

source
ParametricNLPModels.hess_param_coord!Method
hess_param_coord!(nlp, x, vals; obj_weight = 1)

Evaluate $∇ₓₚL(x, 0, p)$, the mixed block of the Lagrangian Hessian with zero constraint multipliers, in sparse coordinate format in place.

source
ParametricNLPModels.hess_param_coordMethod
hess_param_coord(nlp, x; obj_weight = 1)

Evaluate $∇ₓₚL(x, 0, p)$, the mixed block of the Lagrangian Hessian with zero constraint multipliers, in sparse coordinate format.

source
ParametricNLPModels.hpprod!Method
hpprod!(nlp, x, v, Hv; obj_weight = 1)

Evaluate $∇ₓₚL(x, 0, p)v$, the mixed-Hessian-vector product with zero constraint multipliers, in place.

source
ParametricNLPModels.hpprodMethod
hpprod(nlp, x, v; obj_weight = 1)

Evaluate $∇ₓₚL(x, 0, p)v$, the mixed-Hessian-vector product with zero constraint multipliers.

source
ParametricNLPModels.hptprodMethod
hptprod(nlp, x, y, v; obj_weight = 1)

Evaluate $∇ₓₚL(x, y, p)ᵀv$, the transposed-mixed-Hessian-vector product at (x, y).

source