We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a368332 commit a0dffdeCopy full SHA for a0dffde
src/delayedarray/Combine.py
@@ -103,17 +103,19 @@ def along(self) -> int:
103
104
105
def _simplify_combine(x: Combine) -> Any:
106
+ if len(x.seeds) == 1:
107
+ return x.seeds[0]
108
all_seeds = []
109
+ simplified = False
110
for ss in x.seeds:
111
if type(ss) is Combine and x.along == ss.along:
112
# Don't use isinstance, we don't want to collapse for Combine
113
# subclasses that might be doing god knows what.
114
all_seeds += ss.seeds
115
+ simplified = True
116
else:
117
all_seeds.append(ss)
- if len(all_seeds) == 1:
- return all_seeds[0]
- if len(all_seeds) == len(x.seeds):
118
+ if not simplified:
119
return x
120
new_x = copy.copy(x)
121
new_x._seeds = all_seeds
0 commit comments