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
Currently, there are several ways the data structures for the world could be improved:
Several data structures could probably be streamlined by using some more general-purpose data structure. Perhaps a PersistentAddressTree/PersistentTrie would be useful. MultiSet is probably also useful (Use multiset for lookup count tracking #34).
I currently use NamedTuples instead of PersistentHashMaps in several data structures; I had thought when I implemented this that this would be more performant, but I'm not very confident about this. It is probably worth checking
Currently, there are several ways the data structures for the world could be improved:
PersistentAddressTree
/PersistentTrie
would be useful.MultiSet
is probably also useful (Use multiset for lookup count tracking #34).NamedTuple
s instead ofPersistentHashMap
s in several data structures; I had thought when I implemented this that this would be more performant, but I'm not very confident about this. It is probably worth checkingThe text was updated successfully, but these errors were encountered: