ILOG CPLEX .NET Reference Manual

Cplex.GetBoundSA Method (Double[], Double[], Double[], Double[], INumVar[], Int32, Int32)

Computes and returns sensitivity analysis for the bounds of the num consecutive variables, starting from the index specified by start, in the array var.

public virtual void GetBoundSA(
   double[] lblower,
   double[] lbupper,
   double[] ublower,
   double[] ubupper,
   INumVar[] var,
   int start,
   int num
);

Parameters

lblower
lblower[j] will contain the lowest value the lower bound of variable var[j+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.
lbupper
lbupper[j] will contain the highest value to which the lower bound of variable var[j+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[j] will contain the lowest value to which the upper bound of the variable var[j+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[j] will contain the highest value to which the upper bound of variable var[j+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.
var
An array containing the variables for which to return bound sensitivity analysis.
start
The index of first variable in var for which to return bound sensitivity analysis.
num
The number of consecutive variables in var for which to return bound sensitivity analysis.

See Also

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