Skip to content

Commit a0dffde

Browse files
committed
Streamlined the Combine simplification.
1 parent a368332 commit a0dffde

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/delayedarray/Combine.py

+5-3
Original file line numberDiff line numberDiff line change
@@ -103,17 +103,19 @@ def along(self) -> int:
103103

104104

105105
def _simplify_combine(x: Combine) -> Any:
106+
if len(x.seeds) == 1:
107+
return x.seeds[0]
106108
all_seeds = []
109+
simplified = False
107110
for ss in x.seeds:
108111
if type(ss) is Combine and x.along == ss.along:
109112
# Don't use isinstance, we don't want to collapse for Combine
110113
# subclasses that might be doing god knows what.
111114
all_seeds += ss.seeds
115+
simplified = True
112116
else:
113117
all_seeds.append(ss)
114-
if len(all_seeds) == 1:
115-
return all_seeds[0]
116-
if len(all_seeds) == len(x.seeds):
118+
if not simplified:
117119
return x
118120
new_x = copy.copy(x)
119121
new_x._seeds = all_seeds

0 commit comments

Comments
 (0)