Originally posted by: RWunderling
Leo,
You can query the original bounds of a variable in your problem, simply by querying variable.getLB().
However, you are correct in assuming that CPLEX will strengthen bounds in presolve before solving
the root relaxation, but these strengthened values are not accessible from a callback. You can get
a close approximation of those bounds, by using IloCplex::basicPresolve() before solving your model
to compute strengthend bounds before solving your model. This is only an approximation, because
presolve will do more work than just bound strengthening.
Roland
#CPLEXOptimizers#DecisionOptimization