Overview | Group | Tree | Graph | Index | Concepts |
Integer expressions in Concert Technology 2.0 are represented using objects
of type IloIntEpr
.
Constructor Summary | |
---|---|
public | IloIntExpr() |
public | IloIntExpr(IloIntExpr::ImplClass *) |
public | IloIntExpr(const IloIntExprArg) |
public | IloIntExpr(const IloIntLinExprTerm) |
public | IloIntExpr(const IloEnv) |
Method Summary | |
---|---|
public IloIntExpr::ImplClass * | getImpl() |
public IloIntExpr & | operator *=(IloInt) |
public IloIntExpr & | operator+=(const IloIntExprArg) |
public IloIntExpr & | operator+=(IloInt) |
public IloIntExpr & | operator-=(const IloIntExprArg) |
public IloIntExpr & | operator-=(IloInt) |
Inherited Methods from IloIntExprArg |
---|
getImpl |
Inherited Methods from IloNumExprArg |
---|
getImpl |
Inherited Methods from IloExtractable |
---|
end, getEnv, getId, getImpl, getName, getObject, setName, setObject |
Constructor Detail |
---|
This constructor creates an integer expression using the undocumented class
IloIntExprArg
.
This constructor creates an integer expression with linear terms using the
undocumented class IloIntLinExprTerm
.
This constructor creates an integer expression in the environment
env
.
Method Detail |
---|
This operator is recommended for building a Concert Technology expression
in a loop. It is more efficient than x = x * ...
.
This operator is recommended for building a Concert Technology expression
in a loop. It is more efficient than x = x + ...
.
This operator is recommended for building a Concert Technology expression
in a loop. It is more efficient than x = x + ...
.
This operator is recommended for building a Concert Technology expression
in a loop. It is more efficient than x = x - ...
.
This operator is recommended for building a Concert Technology expression
in a loop. It is more efficient than x = x - ...
.