ILOG CPLEX .NET Reference Manual

Cplex.GetRangeSA Method (Double[], Double[], Double[], Double[], IRange[])

Computes and returns sensitivity analysis for the bounds of the range constraints in the array rng.

public virtual void GetRangeSA(
   double[] lblower,
   double[] lbupper,
   double[] ublower,
   double[] ubupper,
   IRange[] rng
);

Parameters

lblower
lblower[i] will contain the lowest value to which the lower bound of range rng[i] can be set without affecting the optimality of the basis. If this information is not required, null may be passed. Otherwise, the array must have at least the same length as rng.
lbupper
lbupper[i] will contain the highest value to which the lower bound of range rng[i] can be set without affecting the optimality of the basis. If this information is not required, null may be passed. Otherwise, the array must have at least the same length as rng.
ublower
ublower[i] will contain the lowest value to which the upper bound of range rng[i] can be set without affecting the optimality of the basis. If this information is not required, null may be passed. Otherwise, the array must have at least the same length as rng.
ubupper
ubupper[i] will contain the highest value to which the upper bound of range rng[i] can be set without affecting the optimality of the basis. If this information is not required, null may be passed. Otherwise, the array must have at least the same length as rng.
rng
An array containing the constraints for which the sensitivity information is requested.

See Also

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