NAG FL Interface
e04rkf (handle_​set_​nlnconstr)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04rkf is a part of the NAG optimization modelling suite and defines or overwrites nonlinear constraints in the model, their number as well as the sparsity structure of their first derivatives.

2 Specification

Fortran Interface
Subroutine e04rkf ( handle, ncnln, bl, bu, nnzgd, irowgd, icolgd, ifail)
Integer, Intent (In) :: ncnln, nnzgd, irowgd(nnzgd), icolgd(nnzgd)
Integer, Intent (Inout) :: ifail
Real (Kind=nag_wp), Intent (In) :: bl(ncnln), bu(ncnln)
Type (c_ptr), Intent (In) :: handle
C Header Interface
#include <nag.h>
void  e04rkf_ (void **handle, const Integer *ncnln, const double bl[], const double bu[], const Integer *nnzgd, const Integer irowgd[], const Integer icolgd[], Integer *ifail)
The routine may be called by the names e04rkf or nagf_opt_handle_set_nlnconstr.

3 Description

After the handle has been initialized (e.g., e04raf has been called), e04rkf may be used to define the nonlinear constraints lgg(x)ug of the problem. If the nonlinear constraints have already been defined, they will be overwritten and their Hessians (or the Hessian of the Lagrangian) will be removed. If e04rkf is called with mg=0, existing nonlinear constraints are removed and no new ones are added. This will typically be used for nonlinear programming problems (NLP) of the kind:
minimize xn f(x)   (a) subject to lgg(x)ug,   (b) lBBxuB,   (c) lxxux,   (d) (1)
where n is the number of the decision variables x, mg is the number of the nonlinear constraints (in (1)(b)) and g(x), lg and ug are mg-dimensional vectors.
Note that upper and lower bounds are specified for all the constraints. This form allows full generality in specifying various types of constraint. In particular, the jth constraint may be defined as an equality by setting lj=uj. If certain bounds are not present, the associated elements lj or uj may be set to special values that are treated as - or +. See the description of the optional parameter Infinite Bound Size which is common among all solvers in the suite. Its value is denoted as bigbnd further in this text. Note that the bounds are interpreted based on its value at the time of calling this routine and any later alterations to Infinite Bound Size will not affect these constraints.
Since each nonlinear constraint is most likely to involve a small subset of the decision variables, the partial derivatives of the constraint functions with respect to those variables are best expressed as a sparse Jacobian matrix of mg rows and n columns. The row and column positions of all the nonzero derivatives must be registered with the handle through e04rkf. The values of the nonlinear constraint functions and their nonzero gradients at particular points in the decision variable space will be communicated to the NLP solver by user-supplied functions (e.g., confun and congrd for e04stf).
An individual set of bounds can be also modified by e04tdf. Note that it is also possible to temporarily disable and enable individual constraints in the model by calling e04tcf and e04tbf, respectively.
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: ncnln Integer Input
On entry: mg, the number of nonlinear constraints (number of rows of the Jacobian matrix).
If ncnln=0, no nonlinear constraints will be defined and any existing nonlinear constraint will be removed from the model. In this case, bl, bu, nnzgd, irowgd and icolgd will not be referenced.
Constraint: ncnln0.
3: bl(ncnln) Real (Kind=nag_wp) array Input
4: bu(ncnln) Real (Kind=nag_wp) array Input
On entry: bl and bu define lower and upper bounds of the nonlinear constraints, lg and ug, respectively. To define the jth constraint as equality, set bl(j) = bu(j)=β , where |β|<bigbnd . To specify a nonexistent lower bound (i.e., lj = - ), set bl(j) -bigbnd ; to specify a nonexistent upper bound, set bu(j) bigbnd .
Constraints:
  • bl(j)bu(j), for j=1,2,,ncnln;
  • bl(j)<bigbnd, for j=1,2,,ncnln;
  • bu(j)>-bigbnd, for j=1,2,,ncnln.
5: nnzgd Integer Input
On entry: nnzgd gives the number of nonzeros in the Jacobian matrix.
Constraint: if ncnln>0, nnzgd>0.
6: irowgd(nnzgd) Integer array Input
7: icolgd(nnzgd) Integer array Input
On entry: arrays irowgd and icolgd store the sparsity structure (pattern) of the Jacobian matrix as nnzgd nonzeros in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction). The matrix has dimensions ncnln×n. irowgd specifies one-based row indices and icolgd specifies one-based column indices. No particular order of elements is expected, but elements should not repeat and the same order should be used when the Jacobian is evaluated for the solver, e.g., the value of gi xj where i=irowgd(l) and j=icolgd(l) should be stored in gdx(l) in congrd in e04stf, for l=1,2,,nnzgd.
Constraints:
  • 1irowgd(l)ncnln, for l=1,2,,nnzgd;
  • 1icolgd(l)n, for l=1,2,,nnzgd.
8: 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
The problem cannot be modified right now, the solver is running.
ifail=6
On entry, ncnln=value.
Constraint: ncnln0.
On entry, nnzgd=value.
Constraint: nnzgd>0.
ifail=8
On entry, i=value, icolgd(i)=value and n=value.
Constraint: 1icolgd(i)n.
On entry, i=value, irowgd(i)=value and ncnln=value.
Constraint: 1irowgd(i)ncnln.
On entry, more than one element of structural Jacobian matrix has row index value and column index value.
Constraint: each element of structural Jacobian matrix must have a unique row and column index.
ifail=10
On entry, j=value, bl(j)=value, bigbnd=value.
Constraint: bl(j)<bigbnd.
On entry, j=value, bl(j)=value and bu(j)=value.
Constraint: bl(j)bu(j).
On entry, j=value, bu(j)=value, bigbnd=value.
Constraint: bu(j)>-bigbnd.
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

e04rkf 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.