Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXcheckchgcoeflist
validates the arguments of
the corresponding CPXchgcoeflist
routine. This data checking
routine is found in source format in the file check.c
which is
provided with the standard CPLEX distribution. To call this routine, you
must compile and link check.c
with your program as well as the
CPLEX Callable Library.
The CPXcheckchgcoeflist
routine has the same argument list
as the CPXchgcoeflist
routine. The second
argument, lp
, is technically a pointer to a constant LP object
of type CPXCLPptr
rather than type CPXLPptr
, as
this routine will not modify the model. For most user applications, this
distinction is unimportant.
Example
status = CPXcheckchgcoeflist (env, lp, numcoefs, rowlist, collist, vallist);
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
numcoefs | The number of coefficients to check, or, equivalently, the length of the arrays |
rowlist | An array of length |
collist | An array of length |
vallist | An array of length |