ILOG CPLEX .NET Reference Manual

Cplex.GetInfeasibilities Method (ILPMatrix, Int32, Int32)

Returns infeasibility values for the constraints corresponding to a range of num rows of LP matrix, starting from the row specified by start.

public virtual double[] GetInfeasibilities(
   ILPMatrix matrix,
   int start,
   int num
);

Parameters

matrix
The LP matrix for which to query the infeasibility. This LP matrix must be in the active model.
start
The index of the first row in matrix for which to query the infeasibility.
num
The number of consecutive rows for which to query the infeasibility.

Return Value

The infeasibility values for the specified rows of LP matrix. If infeas is the array returned by this method, infeas[j] will be the infeasibility value for the constraint corresponding to row j+start of matrix.

Remarks

UnknownObjectException The LP matrix matrix is not in the active model. ILOG.Concert.Exception If the method fails, an exception of type ILOG.Concert.Exception, or one of its derived classes, is thrown.

See Also

Cplex Class | ILOG.CPLEX Namespace | Cplex.GetInfeasibilities Overload List