Skip to content

Commit 7aae8af

Browse files
Don't inline any leaves by default when displaying graph
1 parent c8d24a3 commit 7aae8af

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/egglog/egraph.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,7 @@ def _serialize(
10361036
split_primitive_outputs = kwargs.pop("split_primitive_outputs", True)
10371037
split_functions = kwargs.pop("split_functions", [])
10381038
include_temporary_functions = kwargs.pop("include_temporary_functions", False)
1039-
n_inline_leaves = kwargs.pop("n_inline_leaves", 1)
1039+
n_inline_leaves = kwargs.pop("n_inline_leaves", 0)
10401040
serialized = self._egraph.serialize(
10411041
[],
10421042
max_functions=max_functions,

0 commit comments

Comments
 (0)