-
Notifications
You must be signed in to change notification settings - Fork 4
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
Clean up scratch space after solving #52
Comments
I think they should get automatically cleaned up when the Julia session ends. That doesn’t help if you’re solving many problems with a session though. For that, one option is to manually clean it up; you can get the directory from a JuMP model with Let me know if you have any issues. |
We could also add an option to do this automatically as you said, but I’m not sure the best interface. If you’re interested, I think one way to do that would be to add a boolean SDPAFamily.jl/src/MOI_wrapper.jl Line 349 in 13210d3
|
Thanks for the feedback, let's see if this is a good workaround. It should be very easy to do it. |
Currently, I need to run many instances of the solver, each with slightly different parameters.
This causes the scratchspace to become large very quickly, creating files for the initial problem, the output, and configuration parameters. Is there a way to automatically clean up the scratch space where these files are stored to prevent them from becoming too large?
The text was updated successfully, but these errors were encountered: