-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
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
setdiff!(a,b) slower than setdiff(a,b) when b is large (and viceversa when a is large) #25317
Comments
If I'm not mistaken, the recently merged #23528 have made |
@rfourquet is this issue still open? I really want to take this issue.I'm new to this organisation. |
Yes, it's still open and help would certainly be welcome. |
Okay! I want to work on this issue.Can you please guide me with the required files and changes? |
For the files, you can use the |
Hi @firedranzer, are you still working on this issue? If not, can I start work on it? |
Go for it. As a note, it is for some reason extremely rare for people who ask in issues if they can work on something to actually come through and make a PR. Be the exception :) |
I see similar asymmetric problems with |
@laborg: your work on this so far on this is great—it would be amazing if you wanted to continue to work away at this and make all of these functions cleverer and more efficient! |
setdiff!
iterates through all ofb
.setdiff
iterates through all ofa
. Both functions could be specialized forb::Set
.On
Version 0.7.0-DEV.3096
Commit 3216445* (10 days old master)
The text was updated successfully, but these errors were encountered: