NAG CL Interface
e04rtc (handle_​set_​qconstr_​fac)

Settings help

CL Name Style:


1 Purpose

e04rtc is a part of the NAG optimization modelling suite and defines a new, or edits an existing, quadratic objective function or constraint of the problem using a factor of the quadratic coefficient matrix.

2 Specification

#include <nag.h>
void  e04rtc (void *handle, double s, Integer nnzr, const Integer idxr[], const double r[], Integer mf, Integer nnzf, const Integer irowf[], const Integer icolf[], const double f[], Integer *idqc, NagError *fail)
The function may be called by the names: e04rtc or nag_opt_handle_set_qconstr_fac.

3 Description

After the handle has been initialized (e.g., e04rac has been called), e04rtc may be used to edit a model by adding or replacing a quadratic objective function or constraint of the form
12 xTFTFx + rTx (1)
and
12 xTFTFx + rTx + s0 , (2)
respectively.
The matrix F is a sparse m×n matrix. It can be viewed as the factor of the symmetric matrix Q=FTF in a general quadratic function
12 xTQx + rTx + s . (3)
It is also acceptable if F is a zero matrix, in which case the corresponding objective function or constraint becomes linear. If you have the full matrix Q as input data, please call function e04rsc instead. Note that it is possible to temporarily disable and enable individual constraints in the model by e04tcc and e04tbc, respectively. See Section 4.1 in the E04 Chapter Introduction for more details about the NAG optimization modelling suite.

4 References

None.

5 Arguments

1: handle void * Input
On entry: the handle to the problem. It needs to be initialized (e.g., by e04rac) and must not be changed between calls to the NAG optimization modelling suite.
2: s double Input
On entry: the constant term in quadratic constraint.
If idqc=-1, s will not be referenced.
3: nnzr Integer Input
On entry: the number of nonzero elements in the sparse vector r.
If nnzr=0, r is considered to be zero and the arrays idxr and r will not be referenced and may be NULL.
Constraint: nnzr0.
4: idxr[nnzr] const Integer Input
5: r[nnzr] const double Input
On entry: the nonzero elements of the sparse vector r. idxr[i-1] must contain the index of r[i-1] in the vector, for i=1,2,,nnzr. No particular order is expected, but elements should not repeat. Note that n is the current number of variables in the problem.
Constraint: 1idxr[i-1]n, for i=1,2,,nnzr.
6: mf Integer Input
On entry: m, row dimension of matrix F.
Constraint: mf>0.
7: nnzf Integer Input
On entry: the number of nonzero elements in the matrix F.
If nnzf=0, the matrix F is considered to be zero, the objective function or constraint is linear and mf, irowf, icolf and f will not be referenced and may be NULL.
Constraint: nnzf0.
8: irowf[nnzf] const Integer Input
9: icolf[nnzf] const Integer Input
10: f[nnzf] const double Input
On entry: arrays irowf, icolf and f store the nonzeros of the matrix F in coordinate storage (CS) format (see Section 2.1.1 in the F11 Chapter Introduction). irowf specifies one-based row indices, icolf specifies one-based column indices and f specifies the values of the nonzero elements in such a way that Fij=f[l-1] where i=irowf[l-1], j=icolf[l-1], for l=1,2,,nnzf. No particular order is expected, but elements should not repeat.
Constraint: 1irowf[l-1]mf, ​1icolf[l-1]n, for l=1,2,,nnzf.
11: idqc Integer * Input/Output
On entry:
idqc=0
A new quadratic constraint is created.
idqc>0
Specifies the index of an existing constraint to be replaced. i.e., replaces the idqcth constraint.
idqc=-1
A new quadratic objective is created and will replace any previously defined objective function.
Constraint: idqc-1.
On exit: if idqc=0 on entry, then idqc is overwritten with the index of the new quadratic constraint. By definition, this is the number of quadratic constraints already defined plus one. Otherwise, idqc stays unchanged.
12: fail NagError * Input/Output
The NAG error argument (see Section 7 in the Introduction to the NAG Library CL Interface).

6 Error Indicators and Warnings

NE_ALLOC_FAIL
Dynamic memory allocation failed.
See Section 3.1.2 in the Introduction to the NAG Library CL Interface for further information.
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 properly initialized or it has been corrupted.
NE_INT
nnzr and nnzf cannot be zero at the same time.
On entry, idqc=value.
Constraint: idqc-1.
On entry, mf=value.
Constraint: mf>0.
On entry, nnzf=value.
Constraint: nnzf0.
On entry, nnzr=value.
Constraint: nnzr0.
NE_INTARR
On entry, i=value, idxr[i-1]=value and n=value.
Constraint: 1idxr[i-1]n.
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.
See Section 7.5 in the Introduction to the NAG Library CL Interface for further information.
NE_INVALID_CS
On entry, i=value, icolf[i-1]=value and n=value.
Constraint: 1icolf[i-1]n.
On entry, i=value, irowf[i-1]=value and mf=value.
Constraint: 1irowf[i-1]mf.
On entry, more than one element of f has row index value and column index value.
Constraint: each element of f 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 8 in the Introduction to the NAG Library CL Interface for further information.
NE_NOT_INCREASING
On entry, more than one element of idxr has index value.
Constraint: each element of idxr must have a unique index.
NE_PHASE
The problem cannot be modified right now, the solver is running.
NE_REF_MATCH
On entry, idqc=value.
The given idqc does not match with any quadratic constraint already defined.

7 Accuracy

Not applicable.

8 Parallelism and Performance

e04rtc is not threaded in any implementation.

9 Further Comments

None.

10 Example

This example demonstrates how to define and solve a convex quadratic programming problem where the quadratic term is defined by its factors.
We solve the following norm minimization problem:
minimize xR3 Ax-b22 subject to eTx=1, lx x ux,  
where
A= ( 0.493 0.382 0.0 0.0 0.270 0.475 ) ,  b= ( 0.2 0.4 ),  
lx= ( -1.0 -1.0 -1.0 ) ,  ux= ( 1.0 1.0 1.0 ),  
and eR3 is vector of all ones. Note that
Ax-b22 = xTATAx - 2bTAx + bTb  
which is a convex quadratic function.
The optimal solution (to five significant figures) is
x*=(1.0000,-0.97221,0.97221)T,  
and the objective function value without the constant term bTb is 0.13130.

10.1 Program Text

Program Text (e04rtce.c)

10.2 Program Data

Program Data (e04rtce.d)

10.3 Program Results

Program Results (e04rtce.r)