Overview | Group | Index | Concepts |
The routine CPXNETgetobj
is used to access the objective
function values for a range of arcs in the network stored in a network
problem object.
Example
status = CPXNETgetobj (env, net, obj, 0, cur_narcs-1);
env | A pointer to the CPLEX environment as returned by |
net | A pointer to a CPLEX network problem object as returned by |
obj | Array in which to write the objective values for the requested range of arcs. If NULL is passed, no objective values are retrieved. Otherwise, |
begin | Index of the first arc for which the objective value is to be obtained. |
end | Index of the last arc for which the objective value is to be obtained. |