> > ILOG CPLEX File Formats > MST File Format |
MST File Format |
INDEX PREVIOUS NEXT |
If you use the ILOG CPLEX MIP optimizer, the MST file format is available to indicate MIP start values for specific variables. In an MST file, all integer variables must be declared with a value. An MST file begins with a NAME
indicator record and ends with an ENDATA
record.
Integer variables are specified, one per line. Names begin in column 5 or beyond. The variable name and its MIP start value must be separated by at least one blank space.
The start values in an MST file are used only if the MIPSTART parameter is set to 1 (one). In the Interactive Optimizer issue the command, set mip strategy mipstart 1
. In the Callable Library, use the routine CPXsetintparam(env, CPX_PARAM_MIPSTART, 1)
. In Concert Technology, use the method IloCplex::setParam(MIPStart 1)
.
Here is an example of an MST file:
NAME x001 0 x002 1 x003 1 x004 1 x005 0 x006 1 x007 0 x008 1 x009 0 ENDATA |
Copyright © 1987-2003 ILOG, S.A. All rights reserved. Legal terms. | PREVIOUS NEXT |