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

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

Syntax

C#
INumExpr Diff(
	double v,
	INumExpr e1
)
Visual Basic
Function Diff ( _
	v As Double, _
	e1 As INumExpr _
) As INumExpr

Parameters

v
Type: System..::..Double
A value to use in the difference.
e1
Type: ILOG.Concert..::..INumExpr
An expression to subtract.

Return Value

An expression representing the difference v - e1.

See Also