Creates and returns an instance of IRange initialized to represent the constraint expr == rhs.

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

Syntax

C#
IRange Eq(
	INumExpr expr,
	double rhs
)
Visual Basic
Function Eq ( _
	expr As INumExpr, _
	rhs As Double _
) As IRange

Parameters

expr
Type: ILOG.Concert..::..INumExpr
Expression of the new equality constraint.
rhs
Type: System..::..Double
Upper bound of the new equality constraint.

Return Value

A new IRange object initialized to represent the constraint expr == rhs.

See Also