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

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

Syntax

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

Parameters

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

Return Value

An expression representing the difference e - v.

See Also