Adds four integer expressions and returns the sum.

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

Syntax

C#
IIntExpr Sum(
	IIntExpr e1,
	IIntExpr e2,
	IIntExpr e3,
	IIntExpr e4
)

Parameters

e1
Type: ILOG.Concert..::..IIntExpr
The first integer expression.
e2
Type: ILOG.Concert..::..IIntExpr
The second integer expression.
e3
Type: ILOG.Concert..::..IIntExpr
The third integer expression.
e4
Type: ILOG.Concert..::..IIntExpr
The fourth integer expression.

Return Value

The expression exp, representing the sum e1 + e2 + e3 +e 4.

Remarks

The domain of the resulting expression is computed from the domains of the combined expressions.

See Also