Overview | Group | Index | Concepts |
The routine CPXchgmipstart
modifies
or extends a MIP start. If the existing MIP start has no value
for the variable x[j]
, for example, and the call to
CPXchgmipstart
specifies a start value, then the specified
value is added to the MIP start. If the existing MIP start already
has a value for x[j]
, then the new value
replaces the old. If the model has no MIP start,
CPXchgmipstart
creates one.
Start values may be specified for both integer and continuous
variables.
See the routine CPXcopymipstart
for more information
about how CPLEX uses MIP start information.
Example
status = CPXchgmipstart (env, lp, cnt, indices, values);
See Also:
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
cnt | An integer giving the number of entries in the list. |
indices | An array of length |
values | An array of length |