CPXXdelmipstarts and CPXdelmipstarts
The routine CPXXdelmipstarts/CPXdelmipstarts deletes a range
MIP starts.
int CPXXdelmipstarts( CPXCENVptr env, CPXLPptr lp, int begin, int end )
int CPXdelmipstarts( CPXCENVptr env, CPXLPptr lp, int begin, int end )
Description
The routine CPXXdelmipstarts/CPXdelmipstarts deletes a range
MIP starts. The range
is specified using a beginning and ending index that
represent the first and last MIP start to delete.
The indices of the MIP starts following those deleted
are automatically decreased by the number of deleted MIP starts.
Arguments
- env
-
A pointer to the CPLEX environment as returned by
CPXXopenCPLEX/CPXopenCPLEX. - lp
-
A pointer to a CPLEX problem object as returned by
CPXXcreateprob/CPXcreateprob. - begin
- An integer that specifies the numeric index of the first MIP start to be deleted.
- end
- An integer that specifies the numeric index of the last MIP start to be deleted.
Return
The routine returns 0 (zero) if successful and nonzero if an error occurs.Example
status = CPXdelmipstarts (env, lp, 10, 20);