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.
2 parents 12bb4cc + 99b2bfc commit 57b2d1dCopy full SHA for 57b2d1d
python/egglog/examples/higher_order_functions.py
@@ -37,7 +37,7 @@ def incr_list(xs: MathList) -> MathList:
37
return xs.map(lambda x: x + Math(1))
38
39
40
-egraph = EGraph(save_egglog_string=True)
+egraph = EGraph()
41
y = egraph.let("y", incr_list(MathList().append(Math(1)).append(Math(2))))
42
egraph.run(math_ruleset.saturate())
43
egraph.check(eq(y).to(MathList().append(Math(2)).append(Math(3))))
0 commit comments