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
// a path was not found so throw an error to the user
91
-
VPR_FATAL_ERROR(VPR_ERROR_OTHER, "No route could be found from starting router with id:'%d' and the destination router with id:'%d' using the breadth-first search routing algorithm.", src_router.get_router_user_id(), sink_router.get_router_user_id());
96
+
VPR_FATAL_ERROR(VPR_ERROR_OTHER,
97
+
"No route could be found from starting router with id:'%d' and the destination router with id:'%d' using the breadth-first search routing algorithm.",
auto curr_intermediate_router_parent_link = router_parent_link.find(curr_intermediate_router);
108
117
109
-
// keep tracking baackwards from each router in the path until a router doesn't have a parent link (this means we reached the starting router in the flow)
118
+
// keep tracking backwards from each router in the path until a router doesn't have a parent link (this means we reached the starting router in the flow)
110
119
while (curr_intermediate_router_parent_link != router_parent_link.end()) {
111
-
// add the parent link to the path. Since we are tracing backwards we need to store the links in fron of the last link.
120
+
// add the parent link to the path. Since we are tracing backwards we need to store the links in front of the last link.
0 commit comments