NAG CL Interface
e04tjc (handle_​set_​linconstr_​coeff)

Settings help

CL Name Style:


1 Purpose

e04tjc is a part of the NAG optimization modelling suite and sets or modifies a single element in the linear constraint matrix of the problem.

2 Specification

#include <nag.h>
void  e04tjc (void *handle, Integer idlc, Integer icolbj, double bij, NagError *fail)
The function may be called by the names: e04tjc or nag_opt_handle_set_linconstr_coeff.

3 Description

After the model has been fully or partially built by calling functions of the NAG optimization modelling suite, e04tjc may be used to set or modify a single element bij in the sparse linear constraint matrix B previously defined by e04rjc. This might be particularly helpful when a linear constraint needs to be extended after new variables have been added to the model by e04tac.
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: idlc Integer Input
On entry: i, the number of the linear constraint, i.e., the row index of the element bij in the linear constraint matrix to be changed.
Constraint: 1idlcmB, where mB is the total number of linear constraints in the problem.
3: icolbj Integer Input
On entry: j, the column (variable) index of the element bij.
Constraint: 1icolbjn, where n is the total number of decision variables in the problem.
4: bij double Input
On entry: bij, the new value of the element in the linear constraint matrix B.
5: 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_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_INDICES
On entry, icolbj=value and n=value.
Constraint: 1icolbjn.
On entry, idlc=value and mB=value.
Constraint: 1idlcmB.
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_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_PHASE
The problem cannot be modified right now, the solver is running.
NE_SETUP_ERROR
There are no linear constraints in the problem.

7 Accuracy

Not applicable.

8 Parallelism and Performance

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

9 Further Comments

None.

10 Example

See e04tac.