CPXgetlogfile


Description

The routine CPXgetlogfile() accesses the log file to which messages from all four CPLEX-defined channels are written.

Return Value

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

Synopsis

  int CPXgetlogfile (CPXCENVptr env, CPXFILEptr *logfile_p);

Arguments

CPXCENVptr env

The pointer to the CPLEX environment as returned by CPXopenCPLEX().

CPXFILEptr *logfile_p

The address of a CPXFILEptr variable. This routine sets logfile_p to be the file pointer for the current log file.

Example

  status = CPXgetlogfile (env, &logfile);


Previous Page: CPXgetlb Return to Top Next Page: CPXgetlpcallbackfunc