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

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

Syntax

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

Parameters

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

Return Value

An expression representing the product e1 * v.

See Also