NAG FL Interface
e04tbf (handle_​enable)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

e04tbf is a part of the NAG optimization modelling suite and allows you to enable various components of the existing model which were previously disabled by e04tcf.

2 Specification

Fortran Interface
Subroutine e04tbf ( handle, comp, lidx, idx, ifail)
Integer, Intent (In) :: lidx, idx(lidx)
Integer, Intent (Inout) :: ifail
Character (*), Intent (In) :: comp
Type (c_ptr), Intent (In) :: handle
C Header Interface
#include <nag.h>
void  e04tbf_ (void **handle, const char *comp, const Integer *lidx, const Integer idx[], Integer *ifail, const Charlen length_comp)
The routine may be called by the names e04tbf or nagf_opt_handle_enable.

3 Description

e04tcf and e04tbf form a pair of routines which allow you to temporarily disable and then re-enable parts of a model. This is particularly useful when a sequence of similar problems needs to be solved, to identify how a particular constraint or variable affects the solution, or to switch between previously defined constraints which are somewhat related to each other.
e04tbf may be used to re-enable a component of the model previously disabled by a call to e04tcf. The components to be re-enabled are identified by supplying the same value of comp and idx as used in the call to e04tcf when they were disabled. All newly created components of the model are enabled. Calling this routine on enabled components is not an error but has no effect.
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: comp Character(*) Input
On entry: the type of the component of the model to be enabled. comp is case insensitive.
comp='X', 'VAR' or 'VARIABLE'
Decision variables x.
comp='LC' or 'LINEAR CONSTRAINT'
Linear constraints (see e04rjf).
comp='QC' or 'QUADRATIC CONSTRAINT'
Quadratic constraints (see e04rsf and e04rtf).
comp='NLC' or 'NONLINEAR CONSTRAINT'
Nonlinear constraints (see e04rkf).
comp='CN' or 'CONE'
Quadratic or rotated quadratic cones (see e04rbf).
comp='MI' or 'MATRIX INEQUALITY'
Matrix inequality constraints (see e04rnf).
comp='NLS' or 'RESIDUAL'
Nonlinear residuals rj(x) in the nonlinear least squares objective function (see e04rmf).
Constraint: comp='X', 'VAR', 'VARIABLE', 'LC', 'LINEAR CONSTRAINT', 'QC', 'QUADRATIC CONSTRAINT', 'NLC', 'NONLINEAR CONSTRAINT', 'CN', 'CONE', 'MI', 'MATRIX INEQUALITY', 'NLS' or 'RESIDUAL'.
3: lidx Integer Input
On entry: the number of elements in the index set.
Constraint: lidx1.
4: idx(lidx) Integer array Input
On entry: the index set of components comp to be enabled. The elements may be supplied in any order.
Constraint: 1idx(i)M, for i=1,2,,lidx , where M is the total number of the given components (e.g., decision variables) in the model.
5: 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=5
On entry, lidx=value.
Constraint: lidx1.
ifail=6
On entry, comp=value.
Constraint: comp='X', 'LC', 'QC', 'NLC', 'CN', 'MI' or 'NLS'.
ifail=8
On entry, comp=value, i=value, idx(i)=value and M=value.
Constraint: 1idx(i)M.
ifail=9
On entry, comp=value and idx(i)=value.
This component has been deleted.
This error can only occur when trying to enable a cone constraint that has been deleted by setting its size to 0 with e04rbf.
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.
e04tbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.

9 Further Comments

None.

10 Example

See e04tcf.