You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've just madeglobals::findGlobals(X) significantly faster when X is long and contain lots of elements with basic data types. The gist of this improvement is to skip elements "early" that cannot contain globals:
Can this approach be done efficiently also in a nested approach, e.g. when X is a list of lists? Can it be done efficiently using plain R code, or do we need to implement this is native code? If we go for native code, other parts of the package could also go native - there's a lot of "walking" around in structures going on.
The text was updated successfully, but these errors were encountered:
I've just made
globals::findGlobals(X)
significantly faster whenX
is long and contain lots of elements with basic data types. The gist of this improvement is to skip elements "early" that cannot contain globals:Idea
Can this approach be done efficiently also in a nested approach, e.g. when
X
is a list of lists? Can it be done efficiently using plain R code, or do we need to implement this is native code? If we go for native code, other parts of the package could also go native - there's a lot of "walking" around in structures going on.The text was updated successfully, but these errors were encountered: