WebCab Optimization for COM v2.6

EasySolver.AddLowerBoundConstraint Method 

Adds a lower bound constraint to the multidimensional optimization problem being considered.

public void AddLowerBoundConstraint(
   int variableIndex,
   double greaterThanValue
);

Remarks

Providing a Lower Bound Constraint

For an optimization problem in n-dimensional space, you are able add the following lower bound inequality constraint:

xk >= greaterThanValue,

where xk, is the k+1-th coordinate variable where k take one of the values {0, 1, ..., n-1}, and greaterThanValue is just a constant. In order to pass this lower bound constraint as parameters to this method you need to set:

  1. Parameter `variableIndex' = k
  2. Parameter `greaterThanValue' = greaterThanValue

See Also

EasySolver Class | WebCab.COM.Math.Optimization Namespace | Add a `greater than' linear constraints to multidimensional optimization problem being considered. | Add a `less than' linear constraints to multidimensional optimization problem being considered. | Adds equality constraints to multidimensional optimization problem being considered. | Adds an upper bound constraint to a multidimensional optimization problem being considered. | Removes all the constraints which have been set for a multidimensional optimization problem being considered.