Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXgetrhs
is used to access the right-hand
side coefficients for a range of constraints in a CPLEX problem object. The
beginning and end of the range must be specified.
Example
status = CPXgetrhs (env, lp, rhs, 0, cur_numrows-1);
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
rhs | An array where the specified right-hand side coefficients are to be returned. This array must be of length at least ( |
begin | An integer indicating the beginning of the range of right-hand side terms to be returned. |
end | An integer indicating the end of the range of right-hand side terms to be returned. |