I tried searching quite a bit but could not find the answer. What is the size of integer variables in CPLEX? Is it 64-bit or is it arbitrary precision based on the bounds?
Size of integers in CPLEX
216 Views Asked by Samvid Mistry At
2
There are 2 best solutions below
0

code in in concert/include/ilconcert/ilosys.h
typedef __int64 IloInt;
typedef unsigned __int64 IloUInt;
typedef long IloInt;
typedef unsigned long IloUInt;
typedef double IloNum;
typedef float IloShortNum;
typedef IloInt IloBool;
typedef void* ILO_MAY_ALIAS IloAny;
typedef IloNum (*IloNumFunction)(IloNum);
IloNum is double
IloBool/IloInt both are long
The Max Value of an integer decision variable is IloIntMax
PS:
gives the exact value