-
Notifications
You must be signed in to change notification settings - Fork 49
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
performance suggestion make trees more type stable #155
Comments
Yes indeed. So |
One way around this would be to define |
Yes, I agree! This is definitely worth trying to see how it affects performance. Are you in the midst of any changes so that you can add this, or do you prefer if I make this change on my end? |
There are 3 open pull-requests... so yes, definitely working on things. But |
sounds good! |
If you use
Array{T<Anode,1}
instead ofArray{Anode}
, the performance should be much better as theArray
will have a concrete type. I'm not sure how much this would help performance, but it should be a free win.The text was updated successfully, but these errors were encountered: