Description
This routine reads a basis from a BAS file, and copies that basis into a CPLEX LP problem object.Return Value
The routine returns a zero on success, and a nonzero if an error occurs.Synopsis
int CPXreadcopybase (CPXENVptr env,
CPXLPptr lp,
char *filename);
CPXENVptr envThe pointer to the CPLEX environment as returned by one of the
CPXopenCPLEX routines.
CPXLPptr lpA pointer to a CPLEX LP problem object as returned by
CPXcreateprob().
char *filenameThe name of the file from which the basis should be read.
status = CPXreadcopybase (env, lp, "myprob.bas");