Originally posted by: alvarolorca
Suppose I am solving a linear program in maximization form and the optimal value is zstar (which I do not know before solving the problem). Now, suppose all I care about is not the exact value of zstar, but only of whether zstar is less than or equal to some value F or not. I understand the linear programming solvers implemented in Cplex maintain an upper bound of zstar, let's call it UB, obtained by solving a relaxed or dual version of the problem throughout the algorithm. Given this, can I stop the algorithm once UB is less than or equal to F, if this ever happens? (This would give me the guarantee that zstar is indeed less than or equal to F, without having to wait for full convergence, if that is the case.)
Thanks,
Alvaro
#CPLEXOptimizers#DecisionOptimization