Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXmbasewrite
is used to write the most
current basis associated with a CPLEX problem object to a file. The file is
saved in BAS format which corresponds to the industry standard MPS insert
format for bases.
When CPXmbasewrite
is invoked, the current basis is
written to a file. This routine does not remove the basis from the problem
object.
Example
status = CPXmbasewrite (env, lp, "myprob.bas");
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to the CPLEX problem object as returned by |
filename_str | A character string containing the name of the file to which the basis should be written. |