Creates and returns a new integer variable with the specified bounds and a name.

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

Syntax

C#
IIntVar IntVar(
	int min,
	int max,
	string name
)
Visual Basic
Function IntVar ( _
	min As Integer, _
	max As Integer, _
	name As String _
) As IIntVar

Parameters

min
Type: System..::..Int32
The minimum value of the variable.
max
Type: System..::..Int32
The maximum value of the variable.
name
Type: System..::..String
The name of the variable.

See Also