CPXXdelsolnpoolfilters and CPXdelsolnpoolfilters

The routine CPXXdelsolnpoolfilters/CPXdelsolnpoolfilters deletes filters from the the problem object specified by the argument lp.

int  CPXXdelsolnpoolfilters( CPXCENVptr env, CPXLPptr lp, int begin, int end )

int  CPXdelsolnpoolfilters( CPXCENVptr env, CPXLPptr lp, int begin, int end )

Description

The routine CPXXdelsolnpoolfilters/CPXdelsolnpoolfilters deletes filters from the the problem object specified by the argument lp. The range of filters to delete is specified by the argument begin, the lower index that represents the first filter to be deleted, and the argument end, representing the last filter to be deleted. The indices of the filters following those deleted are decreased by the number of deleted filters.

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 filter to be deleted.
end
An integer that specifies the numeric index of the last filter to be deleted.

Return

The routine returns 0 (zero) if successful and nonzero if an error occurs.

Example


 status = CPXdelsolnpoolfilters (env, lp, 10, 20);