Originally posted by: 9050_Zhihai_Zhang
I solved a model by Cplex124 in ubuntu14.04 OS. The setting is as follow:
cplex.setParam(IloCplex::ClockType,1);
cplex.setParam(IloCplex::TiLim,28800);
cplex.setParam(IloCplex::Threads,1);
However, two different running times were obtained.
1. The first one is :
Root node processing (before b&c):
Real time = 28805.22
Sequential b&c:
Real time = 0.00
-------
Total (root+branch&cut) = 28805.22 sec.
2. The second was obtained by invoking function getTime() and its value is 32147.3 sec.
But, what's means of the first time, 28805.22 sec, which is approximated to the time limits. So, I guess CPU time should be 28805.22 sec. But according to the CPLEX help document, I know that getTime returns CPU time. what's problem? which one is the exact CPU time that can be used to indicate performance of CPLEX?
Thanks in advance.
#CPLEXOptimizers#DecisionOptimization