Usage
Mixed Integer Users OnlyDescription
The routine CPXsoswrite() is used to write SOS information for a problem into an SOS format file.Return Value
The routine returns a zero on success, and a nonzero if an error occurs.Synopsis
int CPXsoswrite (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 *filenameA character string containing the name of the file to which the SOS information should be written.
status = CPXsoswrite (env, lp, "myprob.sos");