nag_opt_handle_set_nlnhess (e04rlc) (PDF version)
e04 Chapter Contents
e04 Chapter Introduction
NAG Library Manual

NAG Library Function Document

nag_opt_handle_set_nlnhess (e04rlc)

 Contents

    1  Purpose
    7  Accuracy
    10  Example

1  Purpose

nag_opt_handle_set_nlnhess (e04rlc) is a part of the NAG optimization modelling suite and defines the structure of the Hessians of the nonlinear objective and constraints, on assumption that they are present in the problem. Alternatively, it may be used to define the Hessian of the Lagrangian.

2  Specification

#include <nag.h>
#include <nage04.h>
void  nag_opt_handle_set_nlnhess (void *handle, Integer idf, Integer nnzh, const Integer irowh[], const Integer icolh[], NagError *fail)

3  Description

After the initialization function nag_opt_handle_init (e04rac) has been called and an objective function f or nonlinear constraint function gi has been registered with nag_opt_handle_set_nlnobj (e04rgc) and nag_opt_handle_set_nlnconstr (e04rkc), nag_opt_handle_set_nlnhess (e04rlc) can be used to define the sparsity structure of the Hessians, H, of those functions (i.e., the second partial derivatives with respect to the decision variables) or a linear combination of them, called the Lagrangian.
Each of the symmetric n×n Hessian matrices will have its own sparsity structure, in general. These structures can be given in separate nag_opt_handle_set_nlnhess (e04rlc) calls, or merged together in the Lagrangian and given in one call.
The nonzero values of the Hessians at particular points in the decision variable space will be communicated to the NLP solver by user-supplied functions (e.g., hess for nag_opt_handle_solve_ipopt (e04stc)).
Some NLP solvers (e.g., nag_opt_handle_solve_ipopt (e04stc)) expect either all of the Hessians (for objective and nonlinear constraints) to be supplied by the user or none and they will terminate with an error indicator if only some but not all of the Hessians have been introduced by nag_opt_handle_set_nlnhess (e04rlc).
Some NLP solvers (e.g., nag_opt_handle_solve_ipopt (e04stc), again) will automatically switch to using internal approximations for the Hessians if none have been introduced by nag_opt_handle_set_nlnhess (e04rlc). This usually results in a slower convergence (more iterations to the solution) and might even result in no solution being attainable within the ordinary tolerances.

4  References

None.

5  Arguments

1:     handle void *Input
On entry: the handle to the problem. It needs to be initialized by nag_opt_handle_init (e04rac) and must not be changed.
2:     idf IntegerInput
On entry: specifies the quantities for which a sparsity structure is provided in nnzh, irowh and icolh.
idf=-1
The sparsity structure of the Hessian of the Lagrangian is provided.
idf=0
The sparsity structure of the Hessian of the objective function is provided.
idf>0
The sparsity structure of the Hessian of the idfth constraint function is provided.
The value of idf will also determine how an NLP solver will call the user-supplied functions that evaluate these nonzeros at particular points of the decision variable space, i.e., whether the solver will expect the nonzero values of the objective and constraint Hessians in separate calls or merged in the Lagrangian Hessian, in one call. See, for example, hess of nag_opt_handle_solve_ipopt (e04stc).
Constraint: -1idfncnln.
Note: ncnln, the number of nonlinear constraints registered with the handle.
3:     nnzh IntegerInput
On entry: the number of nonzero elements in the upper triangle of the matrix H.
Constraint: nnzh>0.
4:     irowh[nnzh] const IntegerInput
5:     icolh[nnzh] const IntegerInput
On entry: arrays irowh and icolh store the nonzeros of the upper triangle of the matrix H in coordinate storage (CS) format (see Section 2.1.1 in the f11 Chapter Introduction). irowh specifies one-based row indices, icolh specifies one-based column indices and specifies the values of the nonzero elements in such a way that hij=H[l-1] where i=irowh[l-1] and j=icolh[l-1], for l=1,2,,nnzh. No particular order is expected, but elements should not repeat.
Constraint: 1irowh[l-1]icolh[l-1]n, for l=1,2,,nnzh.
6:     fail NagError *Input/Output
The NAG error argument (see Section 2.7 in How to Use the NAG Library and its Documentation).

6  Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 2.3.1.2 in How to Use the NAG Library and its Documentation for further information.
NE_ALREADY_DEFINED
On entry, idf=value.
The structure of the Hessian of nonlinear function linked to the given idf has already been defined.
The structure of the Hessian of the Lagrangian has already been defined.
The structure of the individual Hessians has already been defined, the Hessian of the Lagrangian cannot be defined.
NE_BAD_PARAM
On entry, argument value had an illegal value.
NE_HANDLE
The supplied handle does not define a valid handle to the data structure for the NAG optimization modelling suite. It has not been initialized by nag_opt_handle_init (e04rac) or it has been corrupted.
NE_INT
On entry, nnzh=value.
Constraint: nnzh>0.
NE_INT_2
On entry, idf=value.
Constraint: valueidfvalue.
NE_INTERNAL_ERROR
An internal error has occurred in this function. Check the function call and any array sizes. If the call is correct then please contact NAG for assistance.
An unexpected error has been triggered by this function. Please contact NAG.
See Section 2.7.6 in How to Use the NAG Library and its Documentation for further information.
NE_INVALID_CS
On entry, i=value, icolh[i-1]=value and n=value.
Constraint: 1icolh[i-1]n.
On entry, i=value, irowh[i-1]=value and icolh[i-1]=value.
Constraint: irowh[i-1]icolh[i-1] (elements within the upper triangle).
On entry, i=value, irowh[i-1]=value and n=value.
Constraint: 1irowh[i-1]n.
On entry, more than one element of structural matrix H has row index value and column index value.
Constraint: each element of structural matrix H must have a unique row and column index.
NE_NO_LICENCE
Your licence key may have expired or may not have been installed correctly.
See Section 2.7.5 in How to Use the NAG Library and its Documentation for further information.
NE_PHASE
Neither nonlinear objective nor nonlinear constraints are present. The structure of the Hessian cannot be defined.
No nonlinear objective has been defined, its Hessian cannot be set.
The problem cannot be modified in this phase any more, the solver has already been called.

7  Accuracy

Not applicable.

8  Parallelism and Performance

nag_opt_handle_set_nlnhess (e04rlc) is not threaded in any implementation.

9  Further Comments

9.1  Additional Licensor

Parts of the code for nag_opt_handle_solve_ipopt (e04stc) are distributed according to terms imposed by another licensor. Please refer to Library Licensors for further details.

10  Example

See Section 10 in nag_opt_handle_solve_ipopt (e04stc).

nag_opt_handle_set_nlnhess (e04rlc) (PDF version)
e04 Chapter Contents
e04 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2016