You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
During the refactoring See simulate-digital-rail/yaramo#40 we have to replace writing access of connected_nodes with connected_edges and edit calls of set_connection_left, set_connection_right and set_connection_head to take edges instead of nodes.
Acceptance criterion
Replace writing access of connected_nodes with connected_edges
Give set_connection_left the edge instead of a node
Give set_connection_right the edge instead of a node
Give set_connection_head the edge instead of a node
The text was updated successfully, but these errors were encountered:
I think from line 36 to 38 the connections of node d are being set again. Before, it seems to me like the graph is actuate, but this changes where d is. These are the lines:
It also seems to me like there are way too many edges. I think you just have to radically cut out many of them. One edge for each connection should be enough. If that does not work, I would also try to keep edges for both directions, even though I am relatively sure that Yaramo does not need that.
During the refactoring See simulate-digital-rail/yaramo#40 we have to replace writing access of
connected_nodes
withconnected_edges
and edit calls ofset_connection_left
,set_connection_right
andset_connection_head
to take edges instead of nodes.Acceptance criterion
connected_nodes
withconnected_edges
set_connection_left
the edge instead of a nodeset_connection_right
the edge instead of a nodeset_connection_head
the edge instead of a nodeThe text was updated successfully, but these errors were encountered: