Overloaded operator on expression objects.
GRBLinExpr | operator* ( | GRBVar | x, |
double | a ) |
Arguments:
x: Variable.
a: Constant multiplier.
Return value:
Expression that represents the result of multiplying the variable by a constant.
GRBLinExpr | operator* ( | double | a, |
GRBVar | x ) |
Arguments:
a: Constant multiplier.
x: Variable.
Return value:
Expression that represents the result of multiplying the variable by a constant.
GRBLinExpr | operator* ( | const GRBLinExpr& | expr, |
double | a ) |
Arguments:
expr: Expression.
a: Constant multiplier.
Return value:
Expression that represents the result of multiplying the expression by a constant.
GRBLinExpr | operator* ( | double | a, |
const GRBLinExpr& | expr ) |
Arguments:
a: Constant multiplier.
expr: Expression.
Return value:
Expression that represents the result of multiplying the expression by a constant.
GRBQuadExpr | operator* ( | const GRBQuadExpr& | expr, |
double | a ) |
Arguments:
expr: Expression.
a: Constant multiplier.
Return value:
Expression that represents the result of multiplying the expression by a constant.
GRBQuadExpr | operator* ( | double | a, |
const GRBQuadExpr& | expr ) |
Arguments:
a: Constant multiplier.
expr: Expression.
Return value:
Expression that represents the result of multiplying the expression by a constant.
GRBQuadExpr | operator* ( | GRBVar | x, |
GRBVar | y ) |
Arguments:
x: First variable.
y: Second variable.
Return value:
Expression that represents the result of multiplying the argument variables.
GRBQuadExpr | operator* ( | GRBVar | var, |
const GRBLinExpr& | expr ) |
Arguments:
var: Variable.
expr: Expression.
Return value:
Expression that represents the result of multiplying the expression by a variable.
GRBQuadExpr | operator* ( | const GRBLinExpr& | expr, |
GRBVar | var ) |
Arguments:
var: Variable.
expr: Expression.
Return value:
Expression that represents the result of multiplying the expression by a variable.
GRBQuadExpr | operator* ( | const GRBLinExpr& | expr1, |
const GRBLinExpr& | expr2 ) |
Arguments:
expr1: First expression.
expr2: Second expression.
Return value:
Expression that represents the result of multiplying the argument expressions.