-
Notifications
You must be signed in to change notification settings - Fork 13
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
Use Arc<ScipPtr> in place of all scip pointer uses #155
Conversation
There's a memory leak that I traced back to the tests that use |
Yeah, looking at it seemed like there is a memory leak. From what I saw, you double |
I think I did that because I had compilation issues without this indirection. But maybe I did something wrong back then. Anyway, I'm hesistant to merge this with this memory leak but it's limited to the use of callbacks which is not the most common use case and it will enable much safer use of the library. So let's merge it and deal with the memory leaks later as you suggested. Update: I added issue #159 to track this memory leak. |
No description provided.