Originally posted by: BerkUstun
The CPLEX MATLAB API returns the following statistics when in the MIP solution struct:
time: 5.00
dettime: 5982.85
objval: 40.67
x: [711x1 double]
method: 12
mipitcnt: 1908852
ax: [719x1 double]
nodecnt: 78817
nodeleftcnt: 22176
bestobjval: 19.65
nodeint: 7597
cutoff: 40.67
miprelgap: 0.52
pool: [1x1 struct]
1. I am wondering how I can get the values of mipitcnt, nodecnt, nodeleftcnt, nodeint in the CPLEX Python API?
2. Is there a way to access this information as the MIP is being solved through a callback?
#CPLEXOptimizers#DecisionOptimization