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
if ((rr_graph.node_xlow(node.id()) == 0 && !node.is_node_on_specific_side(RIGHT)) //left device edge connects only along block's right side
595
-
|| (rr_graph.node_ylow(node.id()) == int(grid.height() - 1) && !node.is_node_on_specific_side(BOTTOM)) //top device edge connects only along block's bottom side
596
-
|| (rr_graph.node_xlow(node.id()) == int(grid.width() - 1) && !node.is_node_on_specific_side(LEFT)) //right deivce edge connects only along block's left side
597
-
|| (rr_graph.node_ylow(node.id()) == 0 && !node.is_node_on_specific_side(TOP)) //bottom deivce edge connects only along block's top side
594
+
if ((rr_graph.node_xlow(node.id()) == 0 && !rr_graph.is_node_on_specific_side(node.id(), RIGHT)) //left device edge connects only along block's right side
595
+
|| (rr_graph.node_ylow(node.id()) == int(grid.height() - 1) && !rr_graph.is_node_on_specific_side(node.id(), BOTTOM)) //top device edge connects only along block's bottom side
596
+
|| (rr_graph.node_xlow(node.id()) == int(grid.width() - 1) && !rr_graph.is_node_on_specific_side(node.id(), LEFT)) //right deivce edge connects only along block's left side
597
+
|| (rr_graph.node_ylow(node.id()) == 0 && !rr_graph.is_node_on_specific_side(node.id(), TOP)) //bottom deivce edge connects only along block's top side
0 commit comments