Previous Page: CPXcheckchgcoeflistFirst PageNext Page: CPXcheckcopylpwnames

CPXcheckcopylp


Description

This routine validates the arguments of the corresponding CPXcopylp() routine.

Return Value

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

Synopsis

int CPXcheckcopylp (CPXENVptr env,
                    CPXLPptr lp,
                    int numcols,
                    int numrows,
                    int objsen,
                    double *obj,
                    double *rhs,
                    char *sense,
                    int *matbeg,
                    int *matcnt,
                    int *matind,
                    double *matval,
                    double *lb,
                    double *ub,
                    double *rngval);

Arguments

The CPXcheckcopylp() routine has the same argument list as the CPXcopylp() routine.

Example

status = CPXcheckcopylp (env, lp, numcols, numrows, objsen, obj,
                         rhs, sense, matbeg, matcnt, matind,
                         matval, lb, ub, rngval);
Previous Page: CPXcheckchgcoeflistFirst PageNext Page: CPXcheckcopylpwnames