Creates a new modeling variable of the type NumVarType.Float.

Namespace: ILOG.Concert
Assembly: ILOG.Concert (in ILOG.Concert.dll) Version: 22.1.0.0

Syntax

C#
INumVar NumVar(
	double lb,
	double ub,
	string name
)
Visual Basic
Function NumVar ( _
	lb As Double, _
	ub As Double, _
	name As String _
) As INumVar

Parameters

lb
Type: System..::..Double
The lower bound of the new modeling variable.
ub
Type: System..::..Double
The upper bound of the new modeling variable.
name
Type: System..::..String
The name of the new modeling variable.

Return Value

The new modeling variable.

Remarks

This method returns an object representing a new modeling variable of type NumVarType.Float with the specified bounds and name.

See Also