ILOG CPLEX .NET Reference Manual

Cplex.GetAX Method (IRange[], Int32, Int32)

Queries row activity values for a set of range constraints.

public virtual double[] GetAX(
   IRange[] rng,
   int start,
   int num
);

Parameters

rng
An array containing the range constraints whose row activity values are being queried. These range constraints must be in the active model, either directly or through an ILPMatrix object.
start
The index of the first range constraint in rng for which to query the row activity value.
num
The number of consecutive range constraints in rng for which to query the row activity value.

Return Value

The row activity values for the specified range constraints. If ax is the array returned by this method, ax[i] will be the row activity value for the constraint rng[i+start].

Remarks

UnknownObjectException One of the specified constraints 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.GetAX Overload List