Overview | Group | Tree | Graph | Index | Concepts |
This nested enumeration enables you to indicate 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 | |
Float | |
Bool |