Creates and returns the new expression e1 * e2
.
Creates and returns the new expression e1 * e2
.
IIntExpr Prod(IIntExpr,IIntExpr);
Creates and returns the new expression e * v
.
IIntExpr Prod(IIntExpr,int);
Creates and returns an expression representing the product of the expressions expr1
and expr2
.
INumExpr Prod(INumExpr,INumExpr);
Creates and returns an expression representing the product of the expression e
and the value v
.
INumExpr Prod(INumExpr,double);
Creates and returns an expression representing the product of the variablevar1
, the variable var2
, and the value val
,
INumExpr Prod(INumVar,INumVar,double);
Creates and returns an expression representing the product of the variablevar1
, the value val
, and the variable var2
.
INumExpr Prod(INumVar,double,INumVar);
Creates and returns an expression representing the product of the expression e1
and the value v
.
INumExpr Prod(double,INumExpr);
Creates and returns an expression representing the product of the value val
, the variablevar1
, and the variable var2
.
INumExpr Prod(double,INumVar,INumVar);
Creates and returns the new expression v * e
.
IIntExpr Prod(int,IIntExpr);