-
Notifications
You must be signed in to change notification settings - Fork 31
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Warning when changing both of bounds #175
Comments
So you have a reproducible example of the problem? |
@odow here is an example, this input:
Shows this warning: |
The issues is: Xpress.chgbounds(model.inner, [info.column], Cchar['L'], [value]) Then: Xpress.chgbounds(model.inner, [info.column], Cchar['U'], [value]) So for an instant bounds are inconsistent. but after the second call everything is ok. Xpress.chgbounds(model.inner, [info.column], Cchar['B'], [value]) if we are fixing variables, that would change both at the same time and avoid the warning. |
fixed by #187 |
Once this function call
_set_variable_lower_bound
before_set_variable_upper_bound
, it can produce a warning about Inconsistent boundsThe text was updated successfully, but these errors were encountered: