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

Namespace: ILOG.Concert
Assembly: oplall (in oplall.dll)

Syntax

C#
INumVar NumVar(
	double lb,
	double ub,
	string name
)

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