Creates and returns an integer expression representing the difference between the value v and the integer expression e1.

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

Syntax

C#
IIntExpr Diff(
	int v,
	IIntExpr e1
)
Visual Basic
Function Diff ( _
	v As Integer, _
	e1 As IIntExpr _
) As IIntExpr

Parameters

v
Type: System..::..Int32
A value to use in the difference.
e1
Type: ILOG.Concert..::..IIntExpr
An integer expression to subtract.

Return Value

An integer expression representing the difference v - e1.

See Also