| Overview | Group | Tree | Graph | Index | Concepts |
This nested enumeration enables you to specify whether an instance of
IloNumVar is of type integer
(Int), Boolean (Bool), or floating-point
(Float).
Programming Hint
For each enumerated value in IloNumVar::Type, there is a
predefined equivalent C++ #define in the Concert Technology
include files to make programming easier. For example, instead of writing
IloNumVar::Int in your application, you can write
ILOINT. Likewise, ILOFLOAT is defined for
IloNumVar::Float and ILOBOOL for
IloNumVar::Bool.
See Also:
| Fields |
|---|
Int = 1 | |
Float = 2 | |
Bool = 3 |