Overview | Group | Tree | Graph | Index | Concepts |
The routine CPXdelsetrows
deletes a set of rows. Unlike
the routine CPXdelrows
, CPXdelsetrows
does not
require the rows to be in a contiguous range. After the deletion occurs, the
remaining rows are indexed consecutively starting at 0, and in the same
order as before the deletion.
delstat
array must have at least
CPXgetnumrows(env,lp)
elements.
Example
status = CPXdelsetrows (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 rows to be deleted. The routine |