We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The MOI wrapper eagerly updates the row indices of constraints in a model upon deletion:
Gurobi.jl/src/MOI_wrapper/MOI_wrapper.jl
Lines 2115 to 2129 in 38464c2
We should instead do what we do for variables and lazily delay the update until the next call to GRBupdatemodel:
GRBupdatemodel
Lines 981 to 986 in 38464c2
Lines 520 to 534 in 38464c2
This also explains why we didn't trigger #515 for variable deletion: #515 (comment)
The text was updated successfully, but these errors were encountered:
Closed by #552
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
The MOI wrapper eagerly updates the row indices of constraints in a model upon deletion:
Gurobi.jl/src/MOI_wrapper/MOI_wrapper.jl
Lines 2115 to 2129 in 38464c2
We should instead do what we do for variables and lazily delay the update until the next call to
GRBupdatemodel
:Gurobi.jl/src/MOI_wrapper/MOI_wrapper.jl
Lines 981 to 986 in 38464c2
Gurobi.jl/src/MOI_wrapper/MOI_wrapper.jl
Lines 520 to 534 in 38464c2
This also explains why we didn't trigger #515 for variable deletion: #515 (comment)
The text was updated successfully, but these errors were encountered: