Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXdelsetcols
is used to delete a set of
columns from a CPLEX problem object. Unlike the routine
CPXdelcols
, CPXdelsetcols
does not require the
columns to be in a contiguous range. After the deletion occurs, the
remaining columns are indexed consecutively starting at 0, and in the same
order as before the deletion.
delstat
array must have at least
CPXgetnumcols(env,lp)
elements.
Example
status = CPXdelsetcols (env, lp, delstat);
env | A pointer to the CPLEX environment as returned by |
lp | A pointer to a CPLEX problem object as returned by |
delstat | An array indicating the columns to be deleted. The routine |