Skip to content
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

Fix Issue With Garbage Collection #300

Merged
merged 1 commit into from
Jan 17, 2025
Merged

Conversation

gtjusila
Copy link
Contributor

@gtjusila gtjusila commented Jan 17, 2025

This fix the issue mentioned in #296.

When creating a model using JuMP, i.e. via model = Model(SCIP.Optimizer). JuMP creates a model with Caching + Constraint Bridge activated. The way this works is during the optimize! call JuMP will call the MOI.empty! function which first delete the existing SCIPData object, creates a new on, then reinput all the problem in one go. This means that the SCIPData that was created during the Model(SCIP.Optimizer) call and the one that is used during the optimization process may differ.

In the pull request #290, the finalizer was only added to the SCIPData created during the Model call. Now the finalizer call is also added to the SCIPData object created during the MOI.empty! call.

@matbesancon matbesancon merged commit bccbf95 into scipopt:master Jan 17, 2025
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants