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.
1 parent 9b2e17a commit 6396328Copy full SHA for 6396328
pychunkedgraph/graph/edits.py
@@ -308,9 +308,9 @@ def _process_l2_agglomeration(
308
cross_edges = [agg.out_edges.get_pairs(), agg.cross_edges.get_pairs()]
309
cross_edges = np.concatenate(cross_edges)
310
311
- parents = cg.get_parents(cross_edges[:, 0], time_stamp=parent_ts)
+ parents = cg.get_parents(cross_edges[:, 0], time_stamp=parent_ts, raw_only=True)
312
assert np.unique(parents).size == 1, "got cross edges from more than one l2 node"
313
- root = cg.get_root(parents[0], time_stamp=parent_ts)
+ root = cg.get_root(parents[0], time_stamp=parent_ts, raw_only=True)
314
315
# inactive edges must be filtered out
316
# we must avoid the cache to read roots to get segment state before edit began
0 commit comments