Originally posted by: John Cui
First, we should split lb and ub for decision variables from A matrix, A matrix only handle constraints, like x1 + x2 - x3 <= 10.
Then it is more clear to know what constraints and bounds are.
But you can use A matrix to represent lb and ub as well. In theory, 1 <= x2 <= 10 is a constraint.
And I think it is good for performance if you specify the bounds of decision variables.
John Cui
#CPLEXOptimizers#DecisionOptimization