Skip to content

Commit

Permalink
Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
jafioti committed Jul 25, 2024
1 parent 50d1bb4 commit a31000a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/shape/symbolic.rs
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ impl Expression {
}

/// Simplify the expression to its minimal terms, using a cache to retrieve / store the simplification
pub fn simplify_cache(self, cache: &mut FxHashMap<Self, Self>) -> Self {
pub fn simplify_cache(self, cache: &mut FxHashMap<Expression, Expression>) -> Self {
if let Some(s) = cache.get(&self) {
*s
} else {
Expand Down

0 comments on commit a31000a

Please sign in to comment.