We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
BinaryHeap
Currently, every equivalence found under automated theorem proving is added to a BinaryHeap.
Every traversed equivalence is added to a HashSet. This could be replaced by a Cuckoo filter, by choosing a sufficient low positive false rate.
HashSet
It is much harder to find a replacement of BinaryHeap. However, the overall idea is to compress the memory.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently, every equivalence found under automated theorem proving is added to a
BinaryHeap
.Every traversed equivalence is added to a
HashSet
. This could be replaced by a Cuckoo filter, by choosing a sufficient low positive false rate.It is much harder to find a replacement of
BinaryHeap
. However, the overall idea is to compress the memory.The text was updated successfully, but these errors were encountered: