Previous Page: CPXcheckaddcolsFirst PageNext Page: CPXcheckchgcoeflist

CPXcheckaddrows


Description

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

Return Value

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

Synopsis

int CPXcheckaddrows (CPXENVptr env,
                     CPXLPptr lp,
                     int ccnt,
                     int rcnt,
                     int nzcnt,
                     double *rhs,
                     char *sense,
                     int *rmatbeg,
                     int *rmatind,
                     double *rmatval,
                     char **colname,
                     char **rowname);

Arguments

The CPXcheckaddrows() routine has the same argument list as the CPXaddrows() routine.

Example

status = CPXcheckaddrows (env, lp, ccnt, rcnt, nzcnt, rhs,
                          sense, rmatbeg, rmatind, rmatval,
                          newcolname, newrowname);
Previous Page: CPXcheckaddcolsFirst PageNext Page: CPXcheckchgcoeflist