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
{{ message }}
This repository was archived by the owner on Apr 19, 2023. It is now read-only.
We are not doing any hash consing/interning for atoms. It is an important optimization. We already have a typedef for atoms so we can replace it with an interned string implementation to handle this in most of the places. We need to implement the Hash, PartialEq, PartialOrd traits for atoms ourselves rather than deriving them to make them efficient.
We also need to switch to atoms in a couple of places that we use strings to get the full benefit (e.g. predicate names).
We are not doing any hash consing/interning for atoms. It is an important optimization. We already have a typedef for atoms so we can replace it with an interned string implementation to handle this in most of the places. We need to implement the Hash, PartialEq, PartialOrd traits for atoms ourselves rather than deriving them to make them efficient.
We also need to switch to atoms in a couple of places that we use strings to get the full benefit (e.g. predicate names).