NO FRAMES

CPXdelsolnpoolsolns

public int CPXdelsolnpoolsolns(CPXCENVptr env, CPXLPptr lp, int begin, int end)
Definition file: cplex.h

The routine CPXdelsolnpoolsolns deletes a range of solutions from the solution pool. The range is specified using a lower and upper index that represent the first and last solution to be deleted, respectively. The indices of the solutions following those deleted are decreased by the number of deleted solutions.

Example

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

See Also:

Parameters:

env

A pointer to the CPLEX environment as returned by CPXopenCPLEX.

lp

A pointer to a CPLEX problem object as returned by CPXcreateprob.

begin

An integer that specifies the numeric index of the first solution to be deleted.

end

An integer that specifies the numeric index of the last solution to be deleted.

Returns:

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