Overload List

  Name Description
Public method NumVarArray(Int32, Double, Double)
Creates an array of length n initialized to n new modeling variables of the type NumVarType.Float.
(Inherited from IModeler.)
Public method NumVarArray(Int32, array<Double>[]()[][], array<Double>[]()[][])
Creates an array of length n initialized to n new modeling variables of type NumVarType.Float.
(Inherited from IModeler.)
Public method NumVarArray(IColumnArray, Double, Double)
Creates and returns continuous modeling variables, all of type Float, all with same upper bound, all with the same lower bound, for column-wise modeling.

This method creates new modeling variables of type INumVarType.Float, each with the same specified bounds, and returns them in an array. The number of new variables is determined by the size of the IColumnArray argument cols. The new variables are then installed in existing modeling objects as defined by the IColumnArray argument cols.

Public method NumVarArray(IColumnArray, array<Double>[]()[][], array<Double>[]()[][])
Creates and returns continuous modeling variables, all of the same type Float with individually specified upper bound, and individually specified lower bound, for column-wise modeling.

This method creates new modeling variables of type INumVarType.Float, each with its own bounds, and returns them in an array. The number of new variables is determined by the size of the IColumnArray 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.

Public method NumVarArray(Int32, Double, Double, NumVarType)
Creates n new numeric variable objects and returns them in an array.
(Inherited from IModeler.)
Public method NumVarArray(Int32, Double, Double, array<String>[]()[][])
Creates an array of length n initialized to n new modeling variables of type NumVarType.Float.
(Inherited from IModeler.)
Public method NumVarArray(Int32, array<Double>[]()[][], array<Double>[]()[][], array<NumVarType>[]()[][])
Creates n new numeric variables and returns them in an array.
(Inherited from IModeler.)
Public method NumVarArray(Int32, array<Double>[]()[][], array<Double>[]()[][], array<String>[]()[][])
Creates an array of length n initialized to n new modeling variables of type NumVarType.Float.
(Inherited from IModeler.)
Public method NumVarArray(IColumnArray, Double, Double, NumVarType)
Creates and returns modeling variables, all of the same type specified by type, all with same upper bound and same lower bound for column-wise modeling.

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 IColumnArray argument cols. The new variables are then installed in existing modeling objects, as defined by the IColumnArray argument cols.

Public method NumVarArray(IColumnArray, Double, Double, array<String>[]()[][])
Creates and returns continuous modeling variables, all of type Float, with the same specified bounds, but with individually specified names, for column-wise modeling.
Public method NumVarArray(IColumnArray, array<Double>[]()[][], array<Double>[]()[][], array<NumVarType>[]()[][])
Creates and returns modeling variables with the individual type specified by the corresponding entry in the array type, and individual upper and lower bounds as specified in those arrays, for column-wise modeling.

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

Public method NumVarArray(IColumnArray, array<Double>[]()[][], array<Double>[]()[][], array<String>[]()[][])
Creates and returns continuous modeling variables, all of type Float with individually specified upper bound, lower bound, and name, for column-wise modeling.
Public method NumVarArray(Int32, Double, Double, NumVarType, array<String>[]()[][])
Creates n new numeric variable objects and returns them in an array.
(Inherited from IModeler.)
Public method NumVarArray(Int32, array<Double>[]()[][], array<Double>[]()[][], array<NumVarType>[]()[][], array<String>[]()[][])
Creates n new numeric variable objects and returns them in an array.
(Inherited from IModeler.)
Public method NumVarArray(IColumnArray, Double, Double, NumVarType, array<String>[]()[][])
Creates and returns an array of modeling variables with names for column-wise modeling.
Public method NumVarArray(IColumnArray, array<Double>[]()[][], array<Double>[]()[][], array<NumVarType>[]()[][], array<String>[]()[][])
Creates and returns modeling variables with the individual type specified by the corresponding entry in the array type, with individual upper and lower bounds as specified in those arrays, with the name specified individually by the corresponding entry in the array name, for column-wise modeling.

See Also