Creates and returns an empty IRange object with the name specified by name.

The new IRange object is initialized to represent the constraint lb <= 0 <= ub. The new IRange object is assigned name as its name. This method is typically used in an application that applies column-wise modeling to fill in the expression for the ranged constraint while creating the variables.

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

Syntax

C#
IRange Range(
	double lb,
	double ub,
	string name
)

Parameters

lb
Type: System..::..Double
ub
Type: System..::..Double
name
Type: System..::..String

Return Value

A new IRange object initialized to represent the constraint lb <= 0 <= ub.

See Also