Skip to content

Commit

Permalink
Fix graph traversal (#50)
Browse files Browse the repository at this point in the history
* bug: fixed graph traversal

* minor upds

---------

Co-authored-by: anna-grim <[email protected]>
  • Loading branch information
anna-grim and anna-grim authored Feb 7, 2024
1 parent 1d46003 commit 180188e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/deep_neurographs/neurograph.py
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@ def generate_proposals(
node = self.add_immutable_node((i, j), attrs, idxs[0])

# Add edge
self.add_edge(leaf, node, xyz=np.array([xyz_leaf, xyz]))
#self.add_edge(leaf, node, xyz=np.array([xyz_leaf, xyz]))
self.mutable_edges.add(frozenset((leaf, node)))

# Check whether to optimization proposals
Expand Down

0 comments on commit 180188e

Please sign in to comment.