feat!: Decouple expression hashing and equality#277
Merged
Conversation
BREAKING: Expressions no longer use hashing for implementing equality BREAKING: Expression equality no longer takes commutativity into account In #276, @Shadow53 noted > One thing that may be useful enough to pull into its own PR is the > change to not use hashing in the implementation of `PartialEq` for > `Expression`, which also helps speed things up. We originally put this together in #27 to ensure that equality held in the face of commutativity, e.g., `1 + x == x + 1`. In addition to the performance benefits of decoupling the hashing and equality implementations, it makes sense to remove any special status for commutative operations in light of all the work we're doing on expression simplification. If we wished to ensure expressions are `Eq` if and only if they represent the same mathematical expression, we'd have to have equality contingent upon simplification, which would be even more costly.
kalzoo
approved these changes
Aug 10, 2023
Contributor
|
Good to see it! |
Shadow53
approved these changes
Aug 10, 2023
Shadow53
left a comment
Contributor
There was a problem hiding this comment.
Looks good! Thanks for pulling this out of the other PR. Left a style nit, but it's fine to merge without.
| use Expression::*; | ||
| match self { | ||
| Address(m) => { | ||
| Expression::Address(m) => { |
Contributor
There was a problem hiding this comment.
Small style nit, but while we're here: should use Self instead of Expression.
(It's fine not to make this change if there isn't anything more substantial being made. It's just a style thing that is triggered by a certain clippy lint)
Contributor
Author
There was a problem hiding this comment.
Thanks!
Yikes, I just ran cargo clippy -- -W clippy::pedantic 😮
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
BREAKING: Expressions no longer use hashing for implementing equality
BREAKING: Expression hashing and equality no longer take commutativity into account
In #276, @Shadow53 noted
We originally put this together in #27 to ensure that equality held in the face of commutativity, e.g.,
1 + x == x + 1. In addition to the performance benefits of decoupling the hashing and equality implementations, it makes sense to remove any special status for commutative operations in light of all the work we're doing on expression simplification. If we wished to ensure expressions areEqif and only if they represent the same mathematical expression, we'd have to have equality contingent upon simplification, which would be even more costly.