NAG CL Interface
e04tec (handle_​set_​linobj_​coeff)

Settings help

CL Name Style:


1 Purpose

e04tec is a part of the NAG optimization modelling suite and sets or modifies a single element in the linear objective function of the problem.

2 Specification

#include <nag.h>
void  e04tec (void *handle, Integer idxci, double ci, NagError *fail)
The function may be called by the names: e04tec or nag_opt_handle_set_linobj_coeff.

3 Description

After the model has been fully or partially built by calling functions from the NAG optimization modelling suite, e04tec may be used to set or modify a single element ci in the (possibly sparse) linear objective function cTx. This might be particularly helpful when the objective function 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: idxci Integer Input
On entry: i, the index of the element ci in the linear objective function.
Constraint: 1idxcin, where n is the total number of decision variables in the problem.
3: ci double Input
On entry: ci, the new value of the element in the linear objective function.
4: 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, idxci=value and n=value.
Constraint: 1idxcin.
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
The objective function is not linear.

7 Accuracy

Not applicable.

8 Parallelism and Performance

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

9 Further Comments

None.

10 Example

See e04tac.