Originally posted by: BerkUstun
Say that I have an LP of the form
min cx
s.t. Ax = b
lb <= x <= ub
CPLEX allows me to incorporate the box constraints (i.e. lb <= x <= ub) in two different ways.
1) I can include these as constraints within the "A" matrix
2) I can include these as values within the "lb" and "ub" fields of each column.
I'm wondering if it makes a difference to choose approach 1) over approach 2) when I solve an LP using the default settings in CPLEX.
Do all the lb/ub constraints eventually end up in the A matrix? Or are they used in a clever way (i.e. I know that there is a variant of the Simplex algorithm that can exploit box constraints to speed up convergence).
#CPLEXOptimizers#DecisionOptimization