Originally posted by: SystemAdmin
[namsu said:]
Dear,
I've coded a LP model using a concert in c++.
the strange thing is, when I check the running time as belows:
IloTimer timerS(env);
timerS.start();
cplexS.solve();
cout << "CPU time: " << timerS.getTime() << " sec., status: " << cplexS.getStatus() << endl; <br />
it took 0.75 seconds.
However, after I export the lp model using cplexS.exportModel("slave.lp"),
in interactive optimizer, I read the model, and solve the same model using "opt" command.
Then, it took only 0.01 seconds.
Is this possible? 75 times faster than concert!!
anyone can help to understand this situation?
thanks in advance.
#CPLEXOptimizers#DecisionOptimization