-
Notifications
You must be signed in to change notification settings - Fork 52
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
Copying large digraphs is slow #292
Comments
which we can verify sums up to about the same time that
What is the expensive part of this? It's dealing with the edge labels, especially creating the edge labels of the cycle digraph (which are otherwise unset):
Perhaps we need some way of a digraph knowing whether its edge labels have ever been set, or if they're just the default. That way, when doing copy operations (or other operations that preserve the edge labels), then we can simply not do anything. |
Nice analysis. Yes, we should play with the edge labels code, and try to improve this. Important question: how is your computer 3 times faster than mine?? |
Maybe I don't have a million browser tabs open in the background?? 😉 No idea though, because I think our computers are roughly the same model. |
Resolved in v1.4.0 |
While working on something, @mariatsalakou and I noticed:
which is surprisingly slow...
The text was updated successfully, but these errors were encountered: