Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Variable bounds instead of affine constraint
`@constraint(model, 0 <= x <= 1)` is transferred to the solver as a `ScalarAffineFunction`-in-`Interval` constraint. Unless the solver has a presolve that detects that this is a variable bound, it might not see that these are variable bounds and hence this could negatively affect performance.
- Loading branch information