Originally posted by: SystemAdmin
[cosmicsolution said:]
I am using Ilog Solver 6.0 to detect whether an instance is feasible or not with the following algorithm:
- If a solution is not found when run for T seconds, I do a re-start with T = T*2.
This is done using the function: solver.setTimeLimit(T), and then calling solver.solve();
However, when solver.solve() return false, how can i know whether it is because there is NO feasible solution, or because
there is no more time left to continue the search?
Thank you very much.
#CPOptimizer#DecisionOptimization