Creates and returns an expression representing the product of the expression e and the value v.

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

Syntax

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

Parameters

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

Return Value

An expression representing the product e * v.

See Also