We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 88c03c2 commit fc052f6Copy full SHA for fc052f6
src/rewrite_system/rise/analysis.rs
@@ -119,12 +119,7 @@ impl Analysis<Rise> for RiseAnalysis {
119
if !egraph[id].data.canon_nat_expr.is_empty()
120
&& egraph[id].data.canon_nat_expr != egraph[id].data.beta_extract
121
{
122
- println!(
123
- "Adding {} to {}",
124
- egraph[id].data.canon_nat_expr, egraph[id].data.beta_extract
125
- );
126
-
127
- // Remove all other nodes, only the canonical one may remain. This currently breaks some egraph invariant
+ // Remove all other nodes, only the canonical one may remain.
128
egraph[id].nodes.clear();
129
// Add the canonical expr
130
let canon_nat = &egraph[id].data.canon_nat_expr;
0 commit comments