Originally posted by: JDalal
Hi all,
I am new to concert technology. I have coded to model and solve a large MIP problem, which takes more than a day to solve to optimality. I am trying to set one or some combination of following stopping criteria:
(1) runtime, say 3600 sec, (2)no. of iteration, (3) optimality gap.
Initially I was trying to implement the logic in C++ code, but found in this forum that callbacks are there for this same purpose.
While looking at the example in "CplexHome/examples/src/ilomipex4.cpp", I found some functions like getIncumbentObjValue(), getBestObjValue(), getNremainingNodes() etc. have been used in the callback function implementation.
My question is : where can I find these list of functions already available? Is there any documentation listing those functions and what they do?
Thanks in advance.
#CPLEXOptimizers#DecisionOptimization