ILOG CPLEX .NET Reference Manual

IMPModeler.IntVarArray Method (ColumnArray, Int32[], Int32[])

Creates and returns integer modeling variables, with individually specified upper bound, lower bound, and name, for column-wise modeling.

IIntVar[] IntVarArray(
   ColumnArray cols,
   int[] lb,
   int[] ub
);

Parameters

cols
An ColumnArray object defining where to install the new variables.
lb
The lower bounds of the new modeling variables. Variable i is constructed with a lower bound of lb[i].
ub
The upper bounds of the new modeling variables. Variable i is constructed with a upper bound of ub[i].

Return Value

The array of new integer modeling variables.

Remarks

This method creates new modeling variables of type NumVarType.Int, each with its own bounds, and returns them in an array. The number of new variables is determined by the size of the ColumnArray argument cols. Variable i is constructed with bounds lb[i] and ub[i]. The new variables are installed in existing modeling objects as defined by the cols argument.

See Also

IMPModeler Interface | ILOG.Concert Namespace | IMPModeler.IntVarArray Overload List