ILOG CPLEX .NET Reference Manual

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

Computes and returns sensitivity analysis for the bounds of the variables in the array vars.

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

Parameters

lblower
lblower[j] will contain the lowest value the lower bound of variable var[j] 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 the same length as var.
lbupper
lbupper[j] will contain the highest value the lower bound of variable var[j] 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 the same length as var.
ublower
ublower[j] will contain the lowest value the upper bound of variable var[j] 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 the same length as var.
ubupper
ubupper[j] will contain the highest value the upper bound of variable var[j] 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 the same length as var.
var
An array containing the variables for which to return bound sensitivity analysis.

See Also

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