Skip to content

Commit 57b2d1d

Browse files
Merge pull request #259 from egraphs-good/remove-unused-save
Remove unused save egglog string in tests
2 parents 12bb4cc + 99b2bfc commit 57b2d1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/egglog/examples/higher_order_functions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ def incr_list(xs: MathList) -> MathList:
3737
return xs.map(lambda x: x + Math(1))
3838

3939

40-
egraph = EGraph(save_egglog_string=True)
40+
egraph = EGraph()
4141
y = egraph.let("y", incr_list(MathList().append(Math(1)).append(Math(2))))
4242
egraph.run(math_ruleset.saturate())
4343
egraph.check(eq(y).to(MathList().append(Math(2)).append(Math(3))))

0 commit comments

Comments
 (0)