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 6396328 commit 5f383aeCopy full SHA for 5f383ae
pychunkedgraph/graph/edits.py
@@ -304,10 +304,7 @@ def _process_l2_agglomeration(
304
chunk_edges = agg.in_edges.get_pairs()
305
chunk_edges = chunk_edges[~in2d(chunk_edges, removed_edges)]
306
307
- # cross during edits refers to all edges crossing chunk boundary
308
- cross_edges = [agg.out_edges.get_pairs(), agg.cross_edges.get_pairs()]
309
- cross_edges = np.concatenate(cross_edges)
310
-
+ cross_edges = agg.cross_edges.get_pairs()
311
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, raw_only=True)
0 commit comments