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
The current file requires a sequential search to find an object. The original design constraint was to support ~ 60 objects, so this sequential search isn't catastrophically slow... assuming you are not constantly looping over objects. But it is a pain. We should implement a binary search for object IDs and their entry in the initial table.
The text was updated successfully, but these errors were encountered:
The current file requires a sequential search to find an object. The original design constraint was to support ~ 60 objects, so this sequential search isn't catastrophically slow... assuming you are not constantly looping over objects. But it is a pain. We should implement a binary search for object IDs and their entry in the initial table.
The text was updated successfully, but these errors were encountered: