Originally posted by: Rym
Hi
I'm sorry because i still insist to have the correct response:
I read the information about Profiler and i concluded,that the row " CPLEX MIP OPTIMIZATION" is responsable to solve the objective function.
When i compare the time given by "CPLEX MIP OPTIMIZATION" from Total (root+branch&cut) given by engine Log, i found a difference.
Then, i tired to make a scipt in main script to calculate the CPU execution time i found another value.
main {
thisOplModel.generate();
var time0 = new Date();
cplex.solve();
var time1 = new Date();
writeln("solve time is ", (time1.getTime()-time0.getTime())/1000),"seconds");
}
What value among these three I have to take into consideration.
Thanks
#DecisionOptimization#OPLusingCPLEXOptimizer