NO FRAMES

CPXcheckcopyqpsep

int CPXPUBLIC CPXcheckcopyqpsep(CPXCENVptr env, CPXCLPptr lp, const double * qsepvec)
Definition file: cplex.h
Include files: cplex.h

The routine CPXcheckcopyqpsep validates the argument of the corresponding CPXcopyqpsep 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 CPXcheckcopyqpsep routine has the same argument list as the CPXcopyqpsep 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 = CPXcheckcopyqpsep (env, lp, qsepvec);

Returns:

The routine returns nonzero if it detects an error in the data; it returns zero if it does not detect any data errors.