NO FRAMES

CPXNETgetlb

public int CPXNETgetlb(CPXCENVptr env, CPXCNETptr net, double * low, int begin, int end)
Definition file: cplex.h

The routine CPXNETgetlb is used to access the lower capacity bounds for a range of arcs of the network stored in a network problem object.

Example

 status = CPXNETgetlb (env, net, low, 0, cur_narcs-1);

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

net

A pointer to a CPLEX network problem object as returned by CPXNETcreateprob.

low

Array in which to write the lower bound on the flow for the requested arcs. If NULL is passed, no lower bounds are retrieved. Otherwise, the size of the array must be (end-begin+1).

begin

Index of the first arc for which lower bounds are to be obtained.

end

Index of the last arc for which lower bounds are to be obtained.

Returns:

The routine returns zero on success and nonzero if an error occurs.