Description
This routine returns an error message string corresponding to an error code. Error codes are returned by CPLEX routines when some error occurs.
|
|
This routine allows the CPLEX environment parameter to be NULL so that errors caused by one of the CPXopenCPLEX routines can be translated.
|
buffer if the string does exist. In this case, buffer will contain the error message string.
char *CPXgeterrorstring (CPXENVptr env,
int errcode,
char *buffer);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
int errcodeThe error code to be translated.
char *bufferA character string buffer of at least 512 characters to hold the error string.
CPXgeterrorstring (env, status, buffer);