NAG FL Interface
e04rlf (handle_​set_​nlnhess)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04rlf is a part of the NAG optimization modelling suite and defines or redefines either the structure of the Hessians of the nonlinear objective and constraints or the structure of the Hessian of the Lagrangian.

2 Specification

Fortran Interface
Subroutine e04rlf ( handle, idf, nnzh, irowh, icolh, ifail)
Integer, Intent (In) :: idf, nnzh, irowh(nnzh), icolh(nnzh)
Integer, Intent (Inout) :: ifail
Type (c_ptr), Intent (In) :: handle
C Header Interface
#include <nag.h>
void  e04rlf_ (void **handle, const Integer *idf, const Integer *nnzh, const Integer irowh[], const Integer icolh[], Integer *ifail)
The routine may be called by the names e04rlf or nagf_opt_handle_set_nlnhess.

3 Description

After the handle has been initialized (e.g., e04raf has been called), and a nonlinear objective function f(x) and/or the ith (1img) nonlinear constraint function gi(x) has been registered with e04rgf and e04rkf, then e04rlf may be used to define the sparsity structure (pattern) of the Hessians of those functions or of their Lagrangian function. Define:
In general, each of the symmetric n×n Hessian matrices will have its own sparsity structure. These structures can be given in separate e04rlf calls, or merged together in the Lagrangian and given in one call. The nonzero values of the Hessians at particular points will be communicated to the NLP solver by user-supplied functions (e.g., hess for e04stf). The values will need to be provided in the order matching the sparsity pattern.
Note that the Hessians are automatically deleted whenever the underlying functions change. For example, if e04rkf is called to redefine the nonlinear constraints, all individual constraints Hessians or Hessian of the Lagrangian would be deleted. If a nonlinear objective function was changed to linear, the Hessian of the objective function or of the Lagrangian would be deleted. e04rlf can work either with individual Hessians or with the Hessian of the Lagrangian but not both. Therefore, if the Hessian of the Lagrangian was defined and e04rlf was called to define an individual Hessian of the constraint, the Hessian of the Lagrangian would be removed, and vice versa. Hessians can be redefined by multiple calls of e04rlf.
See Section 3.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.

4 References

None.

5 Arguments

1: handle Type (c_ptr) Input
On entry: the handle to the problem. It needs to be initialized (e.g., by e04raf) and must not be changed between calls to the NAG optimization modelling suite.
2: idf Integer Input
On entry: specifies the functions for which a Hessian 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 subroutines 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 e04stf.
Constraint: −1idfmg.
Note: mg, the number of nonlinear constraints registered with the handle.
3: nnzh Integer Input
On entry: the number of nonzero elements in the upper triangle of the matrix H.
Constraint: nnzh>0.
4: irowh(nnzh) Integer array Input
5: icolh(nnzh) Integer array Input
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) where i=irowh(l) and j=icolh(l), for l=1,2,,nnzh. No particular order is expected, but elements should not repeat.
Constraint: 1irowh(l)icolh(l)n, for l=1,2,,nnzh.
6: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value −1 is recommended. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6 Error Indicators and Warnings

If on entry ifail=0 or −1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
The supplied handle does not define a valid handle to the data structure for the NAG optimization modelling suite. It has not been properly initialized or it has been corrupted.
ifail=2
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 right now, the solver is running.
ifail=6
On entry, nnzh=value.
Constraint: nnzh>0.
ifail=7
On entry, idf=value.
Constraint: −1idfvalue.
ifail=8
On entry, i=value, icolh(i)=value and n=value.
Constraint: 1icolh(i)n.
On entry, i=value, irowh(i)=value and icolh(i)=value.
Constraint: irowh(i)icolh(i) (elements within the upper triangle).
On entry, i=value, irowh(i)=value and n=value.
Constraint: 1irowh(i)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.
ifail=-99
An unexpected error has been triggered by this routine. Please contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
ifail=-399
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

Not applicable.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
e04rlf is not threaded in any implementation.

9 Further Comments

9.1 Internal Changes

Internal changes have been made to this routine as follows:
For details of all known issues which have been reported for the NAG Library please refer to the Known Issues.

10 Example

See e04stf.