ILOG CPLEX .NET Reference Manual

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

Computes and returns sensitivity analysis for the bounds of num consecutive range constraints in the array rng, starting with the index specified by rng[start].

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

Parameters

lblower
lblower[i] will contain the lowest value to which the lower bound of range rng[i+start] 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 length num.
lbupper
lbupper[i] will contain the highest value to which the lower bound of range rng[i+start] 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 length num.
ublower
ublower[i] will contain the lowest value to which the upper bound of range rng[i+start] 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 length num.
ubupper
ubupper[i] will contain the highest value to which the upper bound of range rng[i+start] can be set to without affecting the optimality of the basis. If this information is not required, null may be passed. Otherwise, the array must have at least length num.
rng
An array containing the constraints for which the sensitivity information is requested.
start
The index of the first constraints in rng for which the sensitivity information is requested.
num
The number of consecutive constraints in rng for which the sensitivity information is requested.

See Also

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