-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
[SMTChecker] Refactor pointers #7266
Comments
@ekpyron actually why did we want them to be raw pointers instead of shared_ptr? |
shared pointer have non-zero overhead and you always need to be careful about them becoming cyclically dependent on each other... |
Yea, tho I'm wondering if that really makes sense for the SMT sorts |
Rather similar case to us introducing that |
I want to contribute to solve this issue. Can you please guide and assign me this issue? |
Hello, @leonardoalt this problem is still relevant? |
Why not use unique_ptrs as opposed to raw pointers ? Also, I would like to contribute to this issue if possible |
I’m interested in working on this issue of refactoring shared_ptr to raw pointers or unique_ptr. Could you provide some guidance on the preferred approach? |
There are a lot of
shared_ptr
being used forsmt::Sort
where they could be raw pointers.The text was updated successfully, but these errors were encountered: