-
Notifications
You must be signed in to change notification settings - Fork 23
feat(pumpkin-solver-py): Add incrementality to python interface #315
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
Conversation
|
It seems that the failing windows pipeline is due to a memory leak. It is still unclear what exactly is going on, but when running pytest on |
|
Hi Maarten, I've been working on the updated CPMpy interface to be compatible with these updates. Kind regards, |
We have to annotate `Model` as `unsendable`, which means the python script will crash if the interpreter moves the object between threads. It remains to be seen whether this happens in practice, and if so, we will need to engineer our way around it.
da300a8 to
6e8d520
Compare
Thanks for pointing this out. I added it again. |
We have to annotate
Modelasunsendable, which means the python script will crash if the interpreter moves the object between threads. It remains to be seen whether this happens in practice, and if so, we will need to engineer our way around it.