ILOG CPLEX .NET Reference Manual

IMPModeler.NumVarArray Method (ColumnArray, Double, Double, NumVarType, String[])

Creates and returns an array of modeling variables with distinctive names, all with the same lower bound, and all with the same upper bound, as specified, for column-wise modeling.

INumVar[] NumVarArray(
   ColumnArray cols,
   double lb,
   double ub,
   NumVarType type,
   string[] name
);

Parameters

cols
An ColumnArray object defining where to install the new variables.
lb
The lower bound of the new modeling variables.
ub
The upper bound of the new modeling variables.
type
The type of the new modeling variables.
name
The names of the new modeling variables. Variable i is assigned name[i].

Return Value

The array of new modeling variables.

Remarks

This method creates new modeling variables, each with the same specified bounds and type, and returns them in an array. The number of new variables is determined by the size of the ColumnArray argument cols. Each new variable is assigned a separate name, with the variable i assigned name[i]. The new variables are then installed in existing modeling objects, as defined by the ColumnArray argument cols.

See Also

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