Creates and returns an instance of IRange initialized to represent the constraint val <= expr and added to the invoking instance of IModel.

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

Syntax

C#
IRange AddLe(
	double val,
	INumExpr expr,
	string name
)
Visual Basic
Function AddLe ( _
	val As Double, _
	expr As INumExpr, _
	name As String _
) As IRange

Parameters

val
Type: System..::..Double
Value of the new less-than-or-equal-to constraint.
expr
Type: ILOG.Concert..::..INumExpr
Expression of the new less-than-or-equal-to constraint.
name
Type: System..::..String
Name assigned to the new less-than-or-equal-to constraint.

Return Value

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

Remarks

The new IRange object is assigned the name name.

See Also